Merge branch 'release/1.8.1' into production

This commit is contained in:
Raymond Feng 2014-04-24 10:37:39 -07:00
commit 70715991a9
5 changed files with 7 additions and 9 deletions

View File

@ -2,9 +2,7 @@
"title": "LoopBack Documentation",
"content": [
"lib/application.js",
{"title": "LoopBack", "depth": 3},
"lib/loopback.js",
{"title": "Middleware", "depth": 3},
"lib/middleware/token.js",
"lib/models/access-token.js",
"lib/models/access-context.js",

View File

@ -7,6 +7,7 @@ var debug = require('debug')('loopback:security:access-context');
* resources
*
* @class
* @options {Object} context The context object
* @property {Principal[]} principals An array of principals
* @property {Function} model The model class
* @property {String} modelName The model name
@ -16,7 +17,6 @@ var debug = require('debug')('loopback:security:access-context');
* @property {String} accessType The access type
* @property {AccessToken} accessToken The access token
*
* @param {Object} context The context object
* @returns {AccessContext}
* @constructor
*/

View File

@ -356,7 +356,7 @@ ACL.prototype.debug = function() {
* @property {String} accessType The access type
* @param {Function} callback
*/
ACL.checkAccess = function (context, callback) {
ACL.checkAccessForContext = function (context, callback) {
if(!(context instanceof AccessContext)) {
context = new AccessContext(context);
}
@ -422,7 +422,7 @@ ACL.checkAccess = function (context, callback) {
if(resolved && resolved.permission === ACL.DEFAULT) {
resolved.permission = (model && model.settings.defaultPermission) || ACL.ALLOW;
}
debug('checkAccess() returns: %j', resolved);
debug('checkAccessForContext() returns: %j', resolved);
callback && callback(null, resolved);
});
});
@ -455,7 +455,7 @@ ACL.checkAccessForToken = function (token, model, modelId, method, callback) {
context.debug();
this.checkAccess(context, function (err, access) {
this.checkAccessForContext(context, function (err, access) {
if (err) {
callback && callback(err);
return;

View File

@ -9,7 +9,7 @@
"Platform",
"mBaaS"
],
"version": "1.8.0",
"version": "1.8.1",
"scripts": {
"test": "mocha -R spec"
},

View File

@ -268,7 +268,7 @@ describe('security ACLs', function () {
log('ACL 2: ', acl.toObject());
ACL.checkAccess({
ACL.checkAccessForContext({
principals: [
{type: ACL.USER, id: userId}
],
@ -279,7 +279,7 @@ describe('security ACLs', function () {
assert(!err && access.permission === ACL.ALLOW);
});
ACL.checkAccess({
ACL.checkAccessForContext({
principals: [
{type: ACL.ROLE, id: Role.EVERYONE}
],