Skip to main content

All Questions

Filter by
Sorted by
Tagged with
0 votes
1 answer
50 views

Login forbidden after upgrading Meteor version 2.2 to 2.4

Meteor version: 2.4 Node version: 14.x After upgrading Meteor version 2.2 to 2.4 I face some issues. In the project, I used useraccounts:core and connected with that some other dependencies. After the ...
VIKAS KATARIYA's user avatar
0 votes
0 answers
37 views

Meteor-Angular: Meteor.User is not assignable to type User

i have an Angular Meteor project running. Its running but for some reason after i tryed to update all packages ( which was not working ) im getting the following errors while compiling. client/imports/...
xQp's user avatar
  • 302
1 vote
1 answer
44 views

Meteor Autoform - How can I show specific user data?

Please accept my apologies if this has been asked, I'm sure it has and I'm equally sure it's something minor I'm missing, not understanding correctly. I've running the following locally https://...
Marshall G's user avatar
0 votes
1 answer
61 views

TheMeteorChef createUser Methods already exists?

I don't understand, I created this method import { Accounts } from 'meteor/accounts-base'; import SimpleSchema from 'simpl-schema'; import { ValidatedMethod } from 'meteor/mdg:validated-method'; ...
DonFabiolas's user avatar
1 vote
0 answers
37 views

Display form fields based on user type with Meteor Useraccount package

Could anyone help me to figure out how to get around this please? Here is the scenario: Assume there are three types of user namely student, teacher, and parent that I want to save in my collection ...
Luc582's user avatar
  • 15
1 vote
2 answers
102 views

Meteor - event on {{if currentUser}} content loaded

I have a template {{#if currentUser}} <input id="datetimepicker" type="text" > {{/if}} I want do add $('#datetimepicker').datetimepicker(); But in methods of template: onCreated ...
Daniel's user avatar
  • 8,577
1 vote
0 answers
111 views

Clearing Meteor.userId() from client browser after calling Meteor.logoutOtherClients()?

When I open up a browser #1 and log in to our app and then open browser #2 and log in to our app, the first browser log in session closes. I am accomplishing this by calling Meteor.logoutOtherClients()...
jeffci's user avatar
  • 2,622
1 vote
1 answer
84 views

Using angular2-meteor and useraccounts

I was wondering how one could go about using the useraccounts package with angular2-meteor to create a custom UI for logging in. I was following the tutorial for angular2-meteor (http://www.angular-...
Durham Smith's user avatar
0 votes
0 answers
86 views

Confirm password field always prints "pw don't match" while registering

Please have a look at the following site: http://openstrategynetwork.com/joinus Username: uzh Password: osn Now please fill a password and confirm it (no need to register) Although the repeated ...
Amir Rahbaran's user avatar
1 vote
1 answer
136 views

How to get userId in observe callback

I want to use observe for one of my collection on the server but I need to get userId, I'm trying to use this.userId and also Meteor.userId() but not working! see the below code for more detail and ...
Saeed Jalali's user avatar
4 votes
3 answers
2k views

How to add custom fields to Meteor.users collection?

Sorry for my english. I use the package useraccounts:bootstrap for login, registration and so on. How can I add arbitrary data to Meteor.users collection after registration. For example, I want, that ...
Denis Brezhitskiy's user avatar