We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
After creating a user, I had to manually mark them as active and give them a role:
db.users.update({"username": "benwest"}, { $set: { "staff_role": true, "approved": true, "admin": true } })
I had the default_user_approved: true in my yaml file, but it didn't seem to work.
default_user_approved: true
I also noticed that the admin:create_admin_account rake task doesn't mark staff_role: true, so the resulting account isn't usable.
admin:create_admin_account
staff_role: true
The text was updated successfully, but these errors were encountered:
No branches or pull requests
After creating a user, I had to manually mark them as active and give them a role:
I had the
default_user_approved: true
in my yaml file, but it didn't seem to work.I also noticed that the
admin:create_admin_account
rake task doesn't markstaff_role: true
, so the resulting account isn't usable.The text was updated successfully, but these errors were encountered: