Merge pull request #3559 from strongloop/acl-apidoc-fix

Fix case of values per doc issue
This commit is contained in:
Rand McKinney 2017-08-11 11:27:00 -07:00 committed by GitHub
commit df87c17c08
1 changed files with 1 additions and 1 deletions

View File

@ -69,7 +69,7 @@ assert(Role, 'Role model must be defined before ACL model');
* - ALLOW: Explicitly grants access to the resource.
* - AUDIT: Log, in a system-dependent way, the access specified in the permissions component of the ACL entry.
* - DENY: Explicitly denies access to the resource.
* @property {String} principalType Type of the principal; one of: Application, User, Role.
* @property {String} principalType Type of the principal; one of: APPLICATION, USER, ROLE.
* @property {String} principalId ID of the principal - such as appId, userId or roleId.
* @property {Object} settings Extends the `Model.settings` object.
* @property {String} settings.defaultPermission Default permission setting: ALLOW, DENY, ALARM, or AUDIT. Default is ALLOW.