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.
1 parent 6fa2a6e commit 5e4c255Copy full SHA for 5e4c255
1 file changed
lib/tasks/configure/options.js
@@ -182,5 +182,16 @@ module.exports = {
182
},
183
type: 'string',
184
group: 'Service Options:'
185
+ },
186
+
187
+ // Security options
188
+ staffDeviceVerification: {
189
+ description: 'Enable/disable staff device verification (2FA)',
190
+ configPath: 'security.staffDeviceVerification',
191
+ defaultValue: (c, env) => {
192
+ return env === 'production' ? true : false;
193
194
+ type: 'boolean',
195
+ group: 'Security Options:'
196
}
197
};
0 commit comments