( 550, 'SET_CIRC_LONG_OVERDUE', oils_i18n_gettext(550,
'Allows the user to mark a circulation as long-overdue', 'ppl', 'code')),
( 551, 'ADMIN_SERVER_ADDON_FOR_WORKSTATION', oils_i18n_gettext( 551,
- 'Allows a user to specify which Server Add-ons get invoked at the current workstation', 'ppl', 'description'))
+ 'Allows a user to specify which Server Add-ons get invoked at the current workstation', 'ppl', 'description')),
+ ( 552, 'group_application.user.staff.admin.system_admin', oils_i18n_gettext( 552,
+ 'Allow a user to add/remove users to/from the "System Administrator" group', 'ppl', 'description' )),
+ ( 553, 'group_application.user.staff.cat_admin', oils_i18n_gettext( 553,
+ 'Allow a user to add/remove users to/from the "Cataloging Administrator" group', 'ppl', 'description' )),
+ ( 554, 'group_application.user.staff.circ_admin', oils_i18n_gettext( 554,
+ 'Allow a user to add/remove users to/from the "Circulation Administrator" group', 'ppl', 'description' )),
+ ( 555, 'group_application.user.staff.data_review', oils_i18n_gettext( 555,
+ 'Allow a user to add/remove users to/from the "Data Review" group', 'ppl', 'description' )),
+ ( 556, 'group_application.user.staff.volunteers', oils_i18n_gettext( 556,
+ 'Allow a user to add/remove users to/from the "Volunteers" group', 'ppl', 'description' ))
;
--- /dev/null
+BEGIN;
+
+-- SELECT evergreen.upgrade_deps_block_check('', :eg_version);
+
+INSERT INTO permission.perm_list ( code, description ) VALUES
+ ( 'group_application.user.staff.admin.system_admin', oils_i18n_gettext( '',
+ 'Allow a user to add/remove users to/from the "System Administrator" group', 'ppl', 'description' )),
+ ( 'group_application.user.staff.cat_admin', oils_i18n_gettext( '',
+ 'Allow a user to add/remove users to/from the "Cataloging Administrator" group', 'ppl', 'description' )),
+ ( 'group_application.user.staff.circ_admin', oils_i18n_gettext( '',
+ 'Allow a user to add/remove users to/from the "Circulation Administrator" group', 'ppl', 'description' )),
+ ( 'group_application.user.staff.data_review', oils_i18n_gettext( '',
+ 'Allow a user to add/remove users to/from the "Data Review" group', 'ppl', 'description' )),
+ ( 'group_application.user.staff.volunteers', oils_i18n_gettext( '',
+ 'Allow a user to add/remove users to/from the "Volunteers" group', 'ppl', 'description' ))
+;
+
+COMMIT;
\ No newline at end of file