From aad17bd5c7cbe155bf59baa6dc4d80f494b1a080 Mon Sep 17 00:00:00 2001 From: Kyle M Hall Date: Wed, 20 Sep 2023 09:31:47 -0400 Subject: [PATCH] Bug 34844: Add manage_item_editor_templates to userpermissions.sql Content-Type: text/plain; charset=utf-8 Test Plan: 1) perl /kohadevbox/misc4dev/run_tests.pl --run-db-upgrade-only; prove t/Koha/Auth/Permissions.t 2) Note failure 3) Apply this patch 4) perl /kohadevbox/misc4dev/run_tests.pl --run-db-upgrade-only; prove t/Koha/Auth/Permissions.t 5) Tests pass! Signed-off-by: Jonathan Druart Signed-off-by: Marcel de Rooy --- installer/data/mysql/mandatory/userpermissions.sql | 1 + t/Koha/Auth/Permissions.t | 1 + 2 files changed, 2 insertions(+) diff --git a/installer/data/mysql/mandatory/userpermissions.sql b/installer/data/mysql/mandatory/userpermissions.sql index 2f84c9bc2f..2ffe484f3e 100644 --- a/installer/data/mysql/mandatory/userpermissions.sql +++ b/installer/data/mysql/mandatory/userpermissions.sql @@ -56,6 +56,7 @@ INSERT INTO permissions (module_bit, code, description) VALUES ( 9, 'edit_items_restricted', 'Limit item modification to subfields defined in the SubfieldsToAllowForRestrictedEditing preference (please note that edit_item is still required)'), ( 9, 'delete_all_items', 'Delete all items at once'), ( 9, 'manage_item_groups', 'Create, update and delete item groups, add or remove items from a item groups'), + ( 9, 'manage_item_editor_templates', 'Update and delete item editor template owned by others'), ( 9, 'edit_any_item', 'Edit any item regardless of home library'), (10, 'payout', 'Perform account payout action'), (10, 'refund', 'Perform account refund action'), diff --git a/t/Koha/Auth/Permissions.t b/t/Koha/Auth/Permissions.t index 2061ac4170..0d3e068917 100755 --- a/t/Koha/Auth/Permissions.t +++ b/t/Koha/Auth/Permissions.t @@ -159,6 +159,7 @@ subtest 'superlibrarian tests' => sub { 'CAN_user_editcatalogue_edit_items' => 1, 'CAN_user_editcatalogue_fast_cataloging' => 1, 'CAN_user_editcatalogue_manage_item_groups' => 1, + 'CAN_user_editcatalogue_manage_item_editor_templates' => 1, 'CAN_user_editcatalogue' => 1, 'CAN_user_ill' => 1, 'CAN_user_lists_delete_public_lists' => 1, -- 2.30.2