From cb8e555cf1efe255c5c4bca84af2fd5a6023cc09 Mon Sep 17 00:00:00 2001 From: jtubau Date: Mon, 3 Mar 2025 09:25:14 +0100 Subject: [PATCH] feat: refs #7587 add ACL entry for TicketRefund model to allow employee read access --- db/versions/11471-blueOak/00-firstScript.sql | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 db/versions/11471-blueOak/00-firstScript.sql diff --git a/db/versions/11471-blueOak/00-firstScript.sql b/db/versions/11471-blueOak/00-firstScript.sql new file mode 100644 index 0000000000..fec51f2366 --- /dev/null +++ b/db/versions/11471-blueOak/00-firstScript.sql @@ -0,0 +1,3 @@ +INSERT INTO `salix`.`ACL` (`model`, `property`, `accessType`, `permission`, `principalType`, `principalId`) + VALUES + ('TicketRefund', 'find', 'READ', 'ALLOW', 'ROLE', 'employee'); \ No newline at end of file