summaryrefslogtreecommitdiffstats
path: root/models/settings.js
diff options
context:
space:
mode:
authorLauri Ojansivu <x@xet7.org>2018-11-17 16:50:42 +0200
committerLauri Ojansivu <x@xet7.org>2018-11-17 16:50:42 +0200
commitaa691b0af105c8dbc5443b1e0823a701e53c3871 (patch)
tree7f76c9e79c6da428d85160ea9108d586a0e560f8 /models/settings.js
parent7a75d821147c7d9e2ad48b212348c4bf2d4db063 (diff)
downloadwekan-aa691b0af105c8dbc5443b1e0823a701e53c3871.tar.gz
wekan-aa691b0af105c8dbc5443b1e0823a701e53c3871.tar.bz2
wekan-aa691b0af105c8dbc5443b1e0823a701e53c3871.zip
- Revert Improve authentication to [fix Login failure](https://github.com/wekan/wekan/issues/2004).
Thanks to xet7 ! Closes #2004
Diffstat (limited to 'models/settings.js')
-rw-r--r--models/settings.js31
1 files changed, 0 insertions, 31 deletions
diff --git a/models/settings.js b/models/settings.js
index 6c9f5a53..c2a9bf01 100644
--- a/models/settings.js
+++ b/models/settings.js
@@ -76,7 +76,6 @@ if (Meteor.isServer) {
}, createdAt: now, modifiedAt: now};
Settings.insert(defaultSetting);
}
-
const newSetting = Settings.findOne();
if (!process.env.MAIL_URL && newSetting.mailUrl())
process.env.MAIL_URL = newSetting.mailUrl();
@@ -236,35 +235,5 @@ if (Meteor.isServer) {
cas: isCasEnabled(),
};
},
-
- getDefaultAuthenticationMethod() {
- return process.env.DEFAULT_AUTHENTICATION_METHOD;
- },
-
- // TODO: patch error : did not check all arguments during call
- logoutWithTimer(userId) {
- if (process.env.LOGOUT_WITH_TIMER) {
- Jobs.run('logOut', userId, {
- in: {
- days: process.env.LOGOUT_IN,
- },
- on: {
- hour: process.env.LOGOUT_ON_HOURS,
- minute: process.env.LOGOUT_ON_MINUTES,
- },
- priority: 1,
- });
- }
- },
- });
-
- Jobs.register({
- logOut(userId) {
- Meteor.users.update(
- {_id: userId},
- {$set: {'services.resume.loginTokens': []}}
- );
- this.success();
- },
});
}