streamline use if `self`

This commit is contained in:
Benjamin Kroeger 2016-08-16 17:03:21 +02:00 committed by Miroslav Bajtoš
parent 01c1656fc2
commit 4ff9a4c2ef
1 changed files with 4 additions and 4 deletions

View File

@ -395,8 +395,9 @@ module.exports = function(ACL) {
*/ */
ACL.checkAccessForContext = function(context, callback) { ACL.checkAccessForContext = function(context, callback) {
this.resolveRelatedModels(); var self = this;
var roleModel = this.roleModel; self.resolveRelatedModels();
var roleModel = self.roleModel;
if (!(context instanceof AccessContext)) { if (!(context instanceof AccessContext)) {
context = new AccessContext(context); context = new AccessContext(context);
@ -419,9 +420,8 @@ module.exports = function(ACL) {
var req = new AccessRequest(modelName, property, accessType, ACL.DEFAULT, methodNames); var req = new AccessRequest(modelName, property, accessType, ACL.DEFAULT, methodNames);
var effectiveACLs = []; var effectiveACLs = [];
var staticACLs = this.getStaticACLs(model.modelName, property); var staticACLs = self.getStaticACLs(model.modelName, property);
var self = this;
this.find({ where: { model: model.modelName, property: propertyQuery, this.find({ where: { model: model.modelName, property: propertyQuery,
accessType: accessTypeQuery }}, function(err, acls) { accessType: accessTypeQuery }}, function(err, acls) {
if (err) { if (err) {