@@ -, +, @@ userpermissions.sql --- installer/data/mysql/mandatory/userpermissions.sql | 1 + t/Koha/Auth/Permissions.t | 1 + 2 files changed, 2 insertions(+) --- a/installer/data/mysql/mandatory/userpermissions.sql +++ a/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'), --- a/t/Koha/Auth/Permissions.t +++ a/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, --