( 621, 'VIEW_BOOKING_RESOURCE_TYPE', oils_i18n_gettext(621,
'View booking resource types', 'ppl', 'description')),
( 622, 'VIEW_BOOKING_RESOURCE', oils_i18n_gettext(622,
- 'View booking resources', 'ppl', 'description'))
+ 'View booking resources', 'ppl', 'description')),
+ ( 623, 'MANAGE_RESERVES', oils_i18n_gettext(623,
+ 'Allows user to manage Courses, Course Materials, and associate Users with Courses.', 'ppl', 'description'))
;
'CREATE_CIRC_DURATION',
'CREATE_PRECAT',
'DELETE_CIRC_DURATION',
+ 'MANAGE_RESERVES',
'MARK_ITEM_MISSING_PIECES',
'UPDATE_CIRC_DURATION',
'UPDATE_HOLD_REQUEST_TIME',
--- /dev/null
+BEGIN;
+
+SELECT evergreen.upgrade_deps_block_check('XXXX', :eg_version);
+
+INSERT INTO permission.perm_list(id, code, description)
+ VALUES (
+ 620,
+ 'MANAGE_RESERVES',
+ oils_i18n_gettext(
+ 620,
+ 'Allows user to manage Courses, Course Materials, and associate Users with Courses.',
+ 'ppl',
+ 'description'
+ )
+ );
+
+INSERT INTO permission.grp_perm_map(perm, grp, depth) VALUES (620, 9, 0), (620, 11, 0), (20, 12, 0), (620, 13, 0);
+
+COMMIT;
\ No newline at end of file