loopback/lib/models/user.js

21 lines
772 B
JavaScript

// User model
var UserSchema = {
id: {type: String, required: true},
realm: {type: String},
username: {type: String, required: true},
password: {type: String, transient: true}, // Transient property
hash: {type: String}, // Hash code calculated from sha256(realm, username, password, salt, macKey)
salt: {type: String},
macKey: {type: String}, // HMAC to calculate the hash code
email: String,
emailVerified: Boolean,
credentials: [
'UserCredential' // User credentials, private or public, such as private/public keys, Kerberos tickets, oAuth tokens, facebook, google, github ids
],
challenges: [
'Challenge' // Security questions/answers
],
status: String,
created: Date,
lastUpdated: Date
}