refs #4074 quitadas comillas simples
gitea/salix/pipeline/head There was a failure building this commit Details

This commit is contained in:
Alexandre Riera 2023-03-09 09:11:52 +01:00
parent 8d6cd54501
commit ce6cb2ec13
1 changed files with 7 additions and 7 deletions

View File

@ -13,13 +13,13 @@ describe('Service acl', () => {
}); });
$httpBackend.whenPOST('Accounts/user/acl').respond([ $httpBackend.whenPOST('Accounts/user/acl').respond([
{ {
'id': 1, id: 1,
'model': 'ModelExample', model: 'ModelExample',
'property': '*', property: '*',
'accessType': '*', accessType: '*',
'permission': 'ALLOW', permission: 'ALLOW',
'principalType': 'ROLE', principalType: 'ROLE',
'principalId': 'employee' principalId: 'employee'
} }
]); ]);
aclService = _aclService_; aclService = _aclService_;