Skip to content

Commit 260aa24

Browse files
committed
change 2fa to mfa
1 parent 580754c commit 260aa24

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/Options/Definitions.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@ module.exports.ParseServerOptions = {
279279
},
280280
multiFactorAuth: {
281281
env: 'PARSE_SERVER_MFA',
282-
help: 'Options for multi-factor authentication (2FA)',
282+
help: 'Options for multi-factor authentication (MFA)',
283283
action: parsers.objectParser,
284284
},
285285
objectIdSize: {

src/Options/docs.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
* @property {Boolean} mountGraphQL Mounts the GraphQL endpoint
5353
* @property {String} mountPath Mount path for the server, defaults to /parse
5454
* @property {Boolean} mountPlayground Mounts the GraphQL Playground - never use this option in production
55-
* @property {MfaOptions} multiFactorAuth Options for multi-factor authentication (2FA)
55+
* @property {MfaOptions} multiFactorAuth Options for multi-factor authentication (MFA)
5656
* @property {Number} objectIdSize Sets the number of characters in generated object id's, default 10
5757
* @property {PasswordPolicyOptions} passwordPolicy Password policy for enforcing password related rules
5858
* @property {String} playgroundPath Mount path for the GraphQL Playground, defaults to /playground

src/Options/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ export interface ParseServerOptions {
198198
:ENV: PARSE_SERVER_EXPERIMENTAL_IDEMPOTENCY_OPTIONS
199199
:DEFAULT: false */
200200
idempotencyOptions: ?IdempotencyOptions;
201-
/* Options for multi-factor authentication (2FA)
201+
/* Options for multi-factor authentication (MFA)
202202
:ENV: PARSE_SERVER_MFA */
203203
multiFactorAuth: ?MfaOptions;
204204
/* Full path to your GraphQL custom schema.graphql file */

0 commit comments

Comments
 (0)