Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F3509337
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
818 B
Referenced Files
None
Subscribers
None
View Options
diff --git a/keyserver/src/scripts/force-policy-acknowledgment.js b/keyserver/src/scripts/force-policy-acknowledgment.js
new file mode 100644
index 000000000..39efbb506
--- /dev/null
+++ b/keyserver/src/scripts/force-policy-acknowledgment.js
@@ -0,0 +1,20 @@
+// @flow
+
+import { policyTypes } from 'lib/facts/policies.js';
+
+import { dbQuery, SQL } from '../database/database.js';
+import { main } from './utils.js';
+
+// time when policy was officially published for users
+const policyUpdateTime = new Date('2022-12-30T00:00:00').getTime();
+
+async function forcePolicyAcknowledgment() {
+ await dbQuery(SQL`
+ UPDATE policy_acknowledgments
+ SET confirmed = 0
+ WHERE date <= ${policyUpdateTime}
+ AND policy = ${policyTypes.tosAndPrivacyPolicy}
+ `);
+}
+
+main([forcePolicyAcknowledgment]);
File Metadata
Details
Attached
Mime Type
text/x-diff
Expires
Mon, Dec 23, 3:39 AM (16 h, 2 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
2690297
Default Alt Text
(818 B)
Attached To
Mode
rCOMM Comm
Attached
Detach File
Event Timeline
Log In to Comment