Reputation: 904
I am new to Meteor and have been playing with some common packages such as:
accounts-password
accounts-ui
accounts-ui
and a few others that allow role creation and assignment using admin users such as :
These packages seem to allow the public to create user accounts on the public site, and the admin has to login and create/assign roles to these user accounts. The admin however, is not allowed to create user accounts from the admin page.
The features which I cannot find, which I now intend to build myself are:
I thus have to properly understand how the accounts system works. Does anyone have any pointers on where i can start reading, or have any advice, or is aware of any existing packages that might suit my needs?
Upvotes: 2
Views: 942
Reputation: 4049
I built a system like this forking The Meteor Chef's 'base' project.
https://github.com/themeteorchef/base
Here's a complete walkthrough of how to build what you're asking for:
https://themeteorchef.com/recipes/building-a-user-admin/
Underneath the covers, the alanning:roles package is a staple of any system like this.
Upvotes: 1