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 14a63d2 commit 15b5af5Copy full SHA for 15b5af5
src/Options/Definitions.js
@@ -878,7 +878,6 @@ module.exports.DatabaseOptions = {
878
};
879
module.exports.AuthAdapter = {
880
enabled: {
881
- env: 'undefinedENABLED',
882
help: 'Is `true` if the auth adapter is enabled, `false` otherwise.',
883
action: parsers.booleanParser,
884
default: true,
src/Options/index.js
@@ -509,6 +509,8 @@ export interface DatabaseOptions {
509
510
export interface AuthAdapter {
511
/* Is `true` if the auth adapter is enabled, `false` otherwise.
512
- :DEFAULT: true */
+ :DEFAULT: true
513
+ :ENV:
514
+ */
515
enabled: ?boolean;
516
}
0 commit comments