Adding properties description for User Model
- Added description for `realm` `created` `lastUpdated` `status` - End of line for descriptions to be peroid
This commit is contained in:
parent
bfd5059d11
commit
c4917819af
|
@ -42,11 +42,15 @@ var debug = require('debug')('loopback:user');
|
|||
* - ALLOW OWNER `findById`
|
||||
* - ALLOW OWNER `updateAttributes`
|
||||
*
|
||||
* @property {String} username Must be unique
|
||||
* @property {String} password Hidden from remote clients
|
||||
* @property {String} email Must be valid email
|
||||
* @property {Boolean} emailVerified Set when a user's email has been verified via `confirm()`
|
||||
* @property {String} verificationToken Set when `verify()` is called
|
||||
* @property {String} username Must be unique.
|
||||
* @property {String} password Hidden from remote clients.
|
||||
* @property {String} email Must be valid email.
|
||||
* @property {Boolean} emailVerified Set when a user's email has been verified via `confirm()`.
|
||||
* @property {String} verificationToken Set when `verify()` is called.
|
||||
* @property {String} realm The namespace the user belongs to. See [Partitioning users with realms](https://docs.strongloop.com/display/public/LB/Partitioning+users+with+realms) for details.
|
||||
* @property {Date} created The property is not used by LoopBack, you are free to use it for your own purposes.
|
||||
* @property {Date} lastUpdated The property is not used by LoopBack, you are free to use it for your own purposes.
|
||||
* @property {String} status The property is not used by LoopBack, you are free to use it for your own purposes.
|
||||
* @property {Object} settings Extends the `Model.settings` object.
|
||||
* @property {Boolean} settings.emailVerificationRequired Require the email verification
|
||||
* process before allowing a login.
|
||||
|
|
Loading…
Reference in New Issue