LP#1230557 Adding more groups to perm_list
authorMark Cooper <markchristophercooper@gmail.com>
Wed, 25 Sep 2013 17:06:48 +0000 (10:06 -0700)
committerBen Shum <bshum@biblio.org>
Wed, 19 Mar 2014 14:13:53 +0000 (10:13 -0400)
By default some of the perm groups do not have their
application_perm in the perm_list. This adds them.

Signed-off-by: Mark Cooper <markchristophercooper@gmail.com>
Signed-off-by: Ben Shum <bshum@biblio.org>
Conflicts:
Open-ILS/src/sql/Pg/950.data.seed-values.sql

Open-ILS/src/sql/Pg/950.data.seed-values.sql
Open-ILS/src/sql/Pg/upgrade/XXXX.data.perm_list_group_system_admin.sql [new file with mode: 0644]

index 9e0e3b1..e50d0bd 100644 (file)
@@ -1595,7 +1595,17 @@ INSERT INTO permission.perm_list ( id, code, description ) VALUES
  ( 553, 'UPDATE_ORG_UNIT_SETTING.circ.min_item_price', oils_i18n_gettext( 553,
     'UPDATE_ORG_UNIT_SETTING.circ.min_item_price', 'ppl', 'description' )),
  ( 554, 'UPDATE_ORG_UNIT_SETTING.circ.max_item_price', oils_i18n_gettext( 554,
-    'UPDATE_ORG_UNIT_SETTING.circ.max_item_price', 'ppl', 'description' ))
+    'UPDATE_ORG_UNIT_SETTING.circ.max_item_price', 'ppl', 'description' )),
+ ( 555, 'group_application.user.staff.admin.system_admin', oils_i18n_gettext( 555, 
+    'Allow a user to add/remove users to/from the "System Administrator" group', 'ppl', 'description' )),
+ ( 556, 'group_application.user.staff.cat_admin', oils_i18n_gettext( 556, 
+    'Allow a user to add/remove users to/from the "Cataloging Administrator" group', 'ppl', 'description' )),
+ ( 557, 'group_application.user.staff.circ_admin', oils_i18n_gettext( 557, 
+    'Allow a user to add/remove users to/from the "Circulation Administrator" group', 'ppl', 'description' )),
+ ( 558, 'group_application.user.staff.data_review', oils_i18n_gettext( 558, 
+    'Allow a user to add/remove users to/from the "Data Review" group', 'ppl', 'description' )),
+ ( 559, 'group_application.user.staff.volunteers', oils_i18n_gettext( 559, 
+    'Allow a user to add/remove users to/from the "Volunteers" group', 'ppl', 'description' ))
 ;
 
 SELECT SETVAL('permission.perm_list_id_seq'::TEXT, 1000);
diff --git a/Open-ILS/src/sql/Pg/upgrade/XXXX.data.perm_list_group_system_admin.sql b/Open-ILS/src/sql/Pg/upgrade/XXXX.data.perm_list_group_system_admin.sql
new file mode 100644 (file)
index 0000000..7d92cb1
--- /dev/null
@@ -0,0 +1,18 @@
+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