Skip to content

Commit

Permalink
change 2fa to mfa
Browse files Browse the repository at this point in the history
  • Loading branch information
dblythy committed Dec 6, 2020
1 parent 580754c commit 260aa24
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/Options/Definitions.js
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ module.exports.ParseServerOptions = {
},
multiFactorAuth: {
env: 'PARSE_SERVER_MFA',
help: 'Options for multi-factor authentication (2FA)',
help: 'Options for multi-factor authentication (MFA)',
action: parsers.objectParser,
},
objectIdSize: {
Expand Down
2 changes: 1 addition & 1 deletion src/Options/docs.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
* @property {Boolean} mountGraphQL Mounts the GraphQL endpoint
* @property {String} mountPath Mount path for the server, defaults to /parse
* @property {Boolean} mountPlayground Mounts the GraphQL Playground - never use this option in production
* @property {MfaOptions} multiFactorAuth Options for multi-factor authentication (2FA)
* @property {MfaOptions} multiFactorAuth Options for multi-factor authentication (MFA)
* @property {Number} objectIdSize Sets the number of characters in generated object id's, default 10
* @property {PasswordPolicyOptions} passwordPolicy Password policy for enforcing password related rules
* @property {String} playgroundPath Mount path for the GraphQL Playground, defaults to /playground
Expand Down
2 changes: 1 addition & 1 deletion src/Options/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ export interface ParseServerOptions {
:ENV: PARSE_SERVER_EXPERIMENTAL_IDEMPOTENCY_OPTIONS
:DEFAULT: false */
idempotencyOptions: ?IdempotencyOptions;
/* Options for multi-factor authentication (2FA)
/* Options for multi-factor authentication (MFA)
:ENV: PARSE_SERVER_MFA */
multiFactorAuth: ?MfaOptions;
/* Full path to your GraphQL custom schema.graphql file */
Expand Down

0 comments on commit 260aa24

Please sign in to comment.