LP#1879983: add circ.curbside.disable_patron_input to seed data
authorGalen Charlton <gmc@equinoxinitiative.org>
Mon, 15 Jun 2020 15:59:23 +0000 (11:59 -0400)
committerGalen Charlton <gmc@equinoxinitiative.org>
Mon, 15 Jun 2020 15:59:23 +0000 (11:59 -0400)
Signed-off-by: Galen Charlton <gmc@equinoxinitiative.org>
Open-ILS/src/sql/Pg/950.data.seed-values.sql

index 5d4feb2..e4f2ee5 100644 (file)
@@ -20454,6 +20454,19 @@ VALUES (
     'integer'
 );
 
+INSERT INTO config.org_unit_setting_type (name, label, grp, description, datatype)
+VALUES (
+    'circ.curbside.disable_patron_input',
+    oils_i18n_gettext('circ.curbside.disable_patron_input',
+        'When enabled, patrons cannot use the My Account interface to select curbside pickup times',
+        'coust', 'label'),
+    'circ',
+    oils_i18n_gettext('circ.curbside.disable_patron_input',
+        'When enabled, patrons cannot use the My Account interface to select curbside pickup times',
+        'coust', 'description'),
+    'bool'
+);
+
 INSERT INTO actor.org_unit_setting (org_unit, name, value)
     SELECT id, 'circ.curbside', 'false' FROM actor.org_unit WHERE parent_ou IS NULL
         UNION