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([
{
'id': 1,
'model': 'ModelExample',
'property': '*',
'accessType': '*',
'permission': 'ALLOW',
'principalType': 'ROLE',
'principalId': 'employee'
id: 1,
model: 'ModelExample',
property: '*',
accessType: '*',
permission: 'ALLOW',
principalType: 'ROLE',
principalId: 'employee'
}
]);
aclService = _aclService_;