fixup! manual fixes
Signed-off-by: Miroslav Bajtoš <mbajtoss@gmail.com>
This commit is contained in:
parent
397d141036
commit
82cd6681f6
|
@ -617,7 +617,7 @@ module.exports = function(ACL) {
|
|||
break;
|
||||
default:
|
||||
// try resolving a user model with a name matching the principalType
|
||||
var userModel = this.registry.findModel(type);
|
||||
const userModel = this.registry.findModel(type);
|
||||
if (userModel) {
|
||||
userModel.findOne(
|
||||
{where: {or: [{username: id}, {email: id}, {id: id}]}},
|
||||
|
|
|
@ -133,11 +133,10 @@ module.exports = function(Role) {
|
|||
roleModel.roleMappingModel.find({
|
||||
where: {roleId: context.id, principalType: principalType},
|
||||
}, function(err, mappings) {
|
||||
let ids;
|
||||
if (err) {
|
||||
return callback(err);
|
||||
}
|
||||
ids = mappings.map(function(m) {
|
||||
const ids = mappings.map(function(m) {
|
||||
return m.principalId;
|
||||
});
|
||||
query.where = query.where || {};
|
||||
|
|
|
@ -137,7 +137,7 @@ describe('access control - integration', function() {
|
|||
return '/api/users/' + this.randomUser.id;
|
||||
}
|
||||
|
||||
let userCounter;
|
||||
var userCounter; // eslint-disable-line no-var
|
||||
function newUserData() {
|
||||
userCounter = userCounter ? ++userCounter : 1;
|
||||
|
||||
|
|
|
@ -121,7 +121,7 @@ describe('DataSource', function() {
|
|||
});
|
||||
});
|
||||
|
||||
var assertValidDataSource = function(dataSource) {
|
||||
function assertValidDataSource(dataSource) {
|
||||
// has methods
|
||||
assert.isFunc(dataSource, 'createModel');
|
||||
assert.isFunc(dataSource, 'discoverModelDefinitions');
|
||||
|
@ -130,7 +130,7 @@ var assertValidDataSource = function(dataSource) {
|
|||
assert.isFunc(dataSource, 'disableRemote');
|
||||
assert.isFunc(dataSource, 'defineOperation');
|
||||
assert.isFunc(dataSource, 'operations');
|
||||
};
|
||||
}
|
||||
|
||||
assert.isFunc = function(obj, name) {
|
||||
assert(obj, 'cannot assert function ' + name + ' on object that doesnt exist');
|
||||
|
|
|
@ -1012,13 +1012,12 @@ describe('role model', function() {
|
|||
it('should fetch all models assigned to the role', function(done) {
|
||||
const principalTypesToModels = {};
|
||||
let runs = 0;
|
||||
let mappings;
|
||||
|
||||
principalTypesToModels[RoleMapping.USER] = User;
|
||||
principalTypesToModels[RoleMapping.APPLICATION] = Application;
|
||||
principalTypesToModels[RoleMapping.ROLE] = Role;
|
||||
|
||||
mappings = Object.keys(principalTypesToModels);
|
||||
const mappings = Object.keys(principalTypesToModels);
|
||||
|
||||
mappings.forEach(function(principalType) {
|
||||
const Model = principalTypesToModels[principalType];
|
||||
|
@ -1047,12 +1046,12 @@ describe('role model', function() {
|
|||
|
||||
it('should fetch all models only assigned to the role', function(done) {
|
||||
const principalTypesToModels = {};
|
||||
let mappings;
|
||||
|
||||
principalTypesToModels[RoleMapping.USER] = User;
|
||||
principalTypesToModels[RoleMapping.APPLICATION] = Application;
|
||||
principalTypesToModels[RoleMapping.ROLE] = Role;
|
||||
mappings = Object.keys(principalTypesToModels);
|
||||
|
||||
const mappings = Object.keys(principalTypesToModels);
|
||||
|
||||
async.each(mappings, function(principalType, eachCallback) {
|
||||
const Model = principalTypesToModels[principalType];
|
||||
|
|
Loading…
Reference in New Issue