LP#1929242: (follow-up) add grid config WS setting
authorGalen Charlton <gmc@equinoxOLI.org>
Mon, 20 Sep 2021 20:06:54 +0000 (16:06 -0400)
committerGalen Charlton <gmc@equinoxOLI.org>
Mon, 20 Sep 2021 21:24:48 +0000 (17:24 -0400)
Signed-off-by: Galen Charlton <gmc@equinoxOLI.org>

Open-ILS/src/sql/Pg/950.data.seed-values.sql
Open-ILS/src/sql/Pg/upgrade/xxxx.data.record_notes.sql

index d7dca1a..8fc21ae 100644 (file)
@@ -21614,6 +21614,15 @@ VALUES (
         'cwst', 'label'
     )
 );
+INSERT INTO config.workstation_setting_type (name, grp, datatype, label)
+VALUES (
+    'eg.grid.catalog.record.notes', 'gui', 'object',
+    oils_i18n_gettext(
+        'eg.grid.catalog.record.notes',
+        'Grid Config: eg.grid.catalog.record.notes',
+        'cwst', 'label'
+    )
+);
 
 INSERT INTO config.global_flag (name, value, enabled, label)
 VALUES (
index b3d4992..7b52182 100644 (file)
@@ -13,4 +13,14 @@ INSERT INTO permission.perm_list ( id, code, description ) VALUES
 ( 635, 'DELETE_RECORD_NOTE', oils_i18n_gettext(635,
    'Allow the user to delete a record note', 'ppl', 'description'));
 
+INSERT INTO config.workstation_setting_type (name, grp, datatype, label)
+VALUES (
+    'eg.grid.catalog.record.notes', 'gui', 'object',
+    oils_i18n_gettext(
+        'eg.grid.catalog.record.notes',
+        'Grid Config: eg.grid.catalog.record.notes',
+        'cwst', 'label'
+    )
+);
+
 COMMIT;