diff options
author | Sheogorath | 2019-01-25 19:30:33 +0100 |
---|---|---|
committer | Sheogorath | 2019-01-25 19:31:34 +0100 |
commit | 806f403045c292c30fa217a8a32973ba71587c5d (patch) | |
tree | 1d233c8b98d4f9dc25ceeae8e5e0b814a1c74c9f /lib | |
parent | afcbea48cd045bab9beced355b0d73065b3cce34 (diff) |
Disable OpenID by default
We talked about that during a community call. It turned out that not
everyone likes to have OpenID on their instance.
This patch disables OpenID by default.
Signed-off-by: Sheogorath <sheogorath@shivering-isles.com>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/config/default.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/config/default.js b/lib/config/default.js index 5a7ae0a0..9e401f38 100644 --- a/lib/config/default.js +++ b/lib/config/default.js @@ -151,5 +151,5 @@ module.exports = { allowEmailRegister: true, allowGravatar: true, allowPDFExport: true, - openID: true + openID: false } |