From 893329d9c6d33aa5572e268e8f951400a2446303 Mon Sep 17 00:00:00 2001 From: guillaume Date: Fri, 9 Nov 2018 17:46:02 +0100 Subject: patch authentication --- models/settings.js | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'models/settings.js') diff --git a/models/settings.js b/models/settings.js index 35d71533..6c9f5a53 100644 --- a/models/settings.js +++ b/models/settings.js @@ -76,6 +76,7 @@ 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(); @@ -235,6 +236,12 @@ 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, { @@ -257,6 +264,7 @@ if (Meteor.isServer) { {_id: userId}, {$set: {'services.resume.loginTokens': []}} ); + this.success(); }, }); } -- cgit v1.2.3-1-g7c22