LP#1879983: tweak label and description of circ.curbside library setting
authorGalen Charlton <gmc@equinoxinitiative.org>
Mon, 15 Jun 2020 16:02:54 +0000 (12:02 -0400)
committerGalen Charlton <gmc@equinoxinitiative.org>
Mon, 15 Jun 2020 16:02:54 +0000 (12:02 -0400)
Otherwise, that library setting appears to be at direct cross purposes
with circ.curbside.disable_patron_input.

Signed-off-by: Galen Charlton <gmc@equinoxinitiative.org>
Open-ILS/src/sql/Pg/950.data.seed-values.sql
Open-ILS/src/sql/Pg/upgrade/XXXX.schema.curbside.sql

index e4f2ee5..6e8ba6e 100644 (file)
@@ -20419,11 +20419,11 @@ INSERT INTO config.org_unit_setting_type (name, label, grp, description, datatyp
 VALUES (
     'circ.curbside',
     oils_i18n_gettext('circ.curbside',
-        'Allow patrons to select a curbside pickup time',
+        'Enable curbside pickup functionality at library.',
         'coust', 'label'),
     'circ',
     oils_i18n_gettext('circ.curbside',
-        'When set to TRUE patrons will have the ability to schedule curbside pickup of holds that become available for pickup.',
+        'When set to TRUE, enable staff and public interfaces to schedule curbside pickup of holds that become available for pickup.',
         'coust', 'description'),
     'bool'
 );
index 602b6a8..213aee7 100644 (file)
@@ -16,9 +16,9 @@ CREATE TABLE action.curbside (
 INSERT INTO config.org_unit_setting_type (name, label, grp, description, datatype)
 VALUES (
     'circ.curbside',
-    'Allow patrons to select a curbside pickup time',
+    'Enable curbside pickup functionality at library.',
     'circ',
-    'When set to TRUE patrons will have the ability to schedule curbside pickup of holds that become available for pickup.',
+    'When set to TRUE, enable staff and public interfaces to schedule curbside pickup of holds that become available for pickup.',
     'bool'
 );