Merge pull request #3135 from strongloop/backport/fix-role-models-resolution
Role model: resolve related models by name
This commit is contained in:
commit
97f96f4ab8
|
@ -36,9 +36,9 @@ module.exports = function(Role) {
|
|||
Role.resolveRelatedModels = function() {
|
||||
if (!this.userModel) {
|
||||
var reg = this.registry;
|
||||
this.roleMappingModel = reg.getModelByType(loopback.RoleMapping);
|
||||
this.userModel = reg.getModelByType(loopback.User);
|
||||
this.applicationModel = reg.getModelByType(loopback.Application);
|
||||
this.roleMappingModel = reg.getModelByType('RoleMapping');
|
||||
this.userModel = reg.getModelByType('User');
|
||||
this.applicationModel = reg.getModelByType('Application');
|
||||
}
|
||||
};
|
||||
|
||||
|
|
|
@ -45,9 +45,6 @@ describe('role model', function() {
|
|||
ACL.roleMappingModel = RoleMapping;
|
||||
ACL.userModel = User;
|
||||
ACL.applicationModel = Application;
|
||||
Role.roleMappingModel = RoleMapping;
|
||||
Role.userModel = User;
|
||||
Role.applicationModel = Application;
|
||||
});
|
||||
|
||||
it('should define role/role relations', function(done) {
|
||||
|
|
Loading…
Reference in New Issue