Avoid copy status checkout alerts for these:
4 -- Missing
104 -- Evaluations
107 -- Display
112 -- Cleared
114 -- Workroom
115 -- For Opening
103 -- Story Time
Signed-off-by: Bill Erickson <berickxx@gmail.com>
--- /dev/null
+-- Deploy kcls-evergreen:copy-status-alerts to pg
+-- requires: purge-user-activity
+
+BEGIN;
+
+UPDATE config.copy_status SET checkout_ok = TRUE
+WHERE id in (
+ 4, -- Missing
+ 104, -- Evaluations
+ 107, -- Display
+ 112, -- Cleared
+ 114, -- Workroom
+ 115, -- For Opening
+ 103 -- Story Time
+);
+
+COMMIT;
--- /dev/null
+-- Revert kcls-evergreen:copy-status-alerts from pg
+
+BEGIN;
+
+UPDATE config.copy_status SET checkout_ok = FALSE
+WHERE id in (
+ 4, -- Missing
+ 104, -- Evaluations
+ 107, -- Display
+ 112, -- Cleared
+ 114, -- Workroom
+ 115, -- For Opening
+ 103 -- Story Time
+);
+
+
+COMMIT;
payflow-hosted-static-silent-post-url [payflow-hosted-org-settings] 2016-08-17T13:14:48Z Bill Erickson <berickxx@gmail.com> # Fall back to PP silent post URL
teacher-group [student-groups] 2016-09-16T17:43:41Z Bill Erickson <berickxx@gmail.com> # Teach ecard group and policy configs
new-headings-report [po-print-li-count-and-date] 2016-01-28T22:23:12Z Bill Erickson <berickxx@gmail.com> # Support for reporting on new browse headings
+copy-status-alerts [purge-user-activity] 2016-05-25T14:10:24Z Bill Erickson <berickxx@gmail.com> # Reduce copy checkin alerts by status
--- /dev/null
+-- Verify kcls-evergreen:copy-status-alerts on pg
+
+BEGIN;
+
+-- XXX Add verifications here.
+
+ROLLBACK;