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
Database layout:
The user/password fields is created automatically by mongoose module
var userSchema = new Schema({ email: {type: String, required: true}, //The account email resetKey: {type: String, required: true}, //Used for email password resets enabled: {type: Boolean, default: false, required: true}, //If the account is enabled plugins: [type: String], //The plugin UUID list. isMod: {type: Boolean, default: false}, isAdmin: {type: Boolean, default: false} });
The text was updated successfully, but these errors were encountered:
Now it's a Working task :)
Sorry, something went wrong.
Current layout can be seen there: https://github.com/Statik-Metrics/Statik-Website/blob/722788aa84adb35028ca2556ffde2460c33e63a8/models/user.js
Basicly it support oauth now.
plugin field got updated so it got a UUID & name.
Should now be fairly stable.
No branches or pull requests
Database layout:
The user/password fields is created automatically by mongoose module
The text was updated successfully, but these errors were encountered: