From 1c57366b4c63d254c05ea20cc966ddfb05c781e4 Mon Sep 17 00:00:00 2001 From: Galen Charlton Date: Mon, 15 Jun 2020 11:59:23 -0400 Subject: [PATCH] LP#1879983: add circ.curbside.disable_patron_input to seed data Signed-off-by: Galen Charlton --- Open-ILS/src/sql/Pg/950.data.seed-values.sql | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/Open-ILS/src/sql/Pg/950.data.seed-values.sql b/Open-ILS/src/sql/Pg/950.data.seed-values.sql index 5d4feb2998..e4f2ee50b0 100644 --- a/Open-ILS/src/sql/Pg/950.data.seed-values.sql +++ b/Open-ILS/src/sql/Pg/950.data.seed-values.sql @@ -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 -- 2.11.0