refs #6274 upperCase Model
gitea/salix/pipeline/head This commit looks good Details

This commit is contained in:
Jorge Penadés 2023-11-29 08:37:56 +01:00
parent 29fb36010c
commit 48dd068190
1 changed files with 3 additions and 3 deletions

View File

@ -6,8 +6,8 @@ INSERT INTO `account`.`roleInherit` (role, inheritsFrom)
INSERT INTO `salix`.`ACL` (model, property, accessType, permission, principalType, principalId)
VALUES
('workerTimeControl', 'login', 'READ', 'ALLOW', 'ROLE', '*'),
('workerTimeControl', 'getClockIn', 'READ', 'ALLOW', 'ROLE', '*'),
('workerTimeControl', 'clockIn', 'WRITE', 'ALLOW', 'ROLE', '*');
('WorkerTimeControl', 'login', 'READ', 'ALLOW', 'ROLE', 'timeControl'),
('WorkerTimeControl', 'getClockIn', 'READ', 'ALLOW', 'ROLE', 'timeControl'),
('WorkerTimeControl', 'clockIn', 'WRITE', 'ALLOW', 'ROLE', 'timeControl');
CALL `account`.`role_sync`();