We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
githubOrgMFA
compliance_checks
1 parent fc2ad81 commit 55eaac5Copy full SHA for 55eaac5
src/database/migrations/1733529877002_update_check_githubOrgMFA.js
@@ -0,0 +1,19 @@
1
+exports.up = async (knex) => {
2
+ await knex('compliance_checks')
3
+ .where({ code_name: 'githubOrgMFA' })
4
+ .update({
5
+ implementation_status: 'completed',
6
+ implementation_type: 'computed',
7
+ implementation_details_reference: 'https://github.com/secure-dashboards/openjs-foundation-dashboard/issues/43'
8
+ })
9
+}
10
+
11
+exports.down = async (knex) => {
12
13
14
15
+ implementation_status: 'pending',
16
+ implementation_type: null,
17
+ implementation_details_reference: null
18
19
0 commit comments