Merge pull request #3448 from strongloop/fix_type

Fix API doc for Model class property type
This commit is contained in:
Candy 2017-06-14 15:49:22 -04:00 committed by GitHub
commit 1be0a9f3d5
1 changed files with 1 additions and 1 deletions

View File

@ -102,7 +102,7 @@ module.exports = function(registry) {
* @property {SharedClass} Model.sharedMethod The `strong-remoting` [SharedClass](http://apidocs.strongloop.com/strong-remoting/#sharedclass) that contains remoting (and http) metadata. Static property.
* @property {Object} settings Contains additional model settings.
* @property {string} settings.http.path Base URL of the model HTTP route.
* @property [{string}] settings.acls Array of ACLs for the model.
* @property {Array.<string>} settings.acls Array of ACLs for the model.
* @class
*/
var Model = registry.modelBuilder.define('Model');