feat: Deprecation DEPPS6: Authentication adapters disabled by default (#8858)

BREAKING CHANGE: Authentication adapters are disabled by default; to use an authentication adapter it needs to be explicitly enabled in the Parse Server authentication adapter option `auth.<provider>.enabled: true`
This commit is contained in:
Onur
2024-02-15 03:28:09 +03:00
committed by GitHub
parent 0e9b6d69ef
commit 0cf58eb8d6
5 changed files with 3 additions and 24 deletions

View File

@@ -1046,7 +1046,7 @@ module.exports.AuthAdapter = {
enabled: {
help: 'Is `true` if the auth adapter is enabled, `false` otherwise.',
action: parsers.booleanParser,
default: true,
default: false,
},
};
module.exports.LogLevels = {