Add a new env var to select the default authentication method

This commit is contained in:
guillaume 2018-12-19 13:42:51 +01:00
parent 72e905675d
commit 6b145bb3cc
7 changed files with 24 additions and 3 deletions

View file

@ -260,5 +260,9 @@ if (Meteor.isServer) {
cas: isCasEnabled(),
};
},
getDefaultAuthenticationMethod() {
return process.env.DEFAULT_AUTHENTICATION_METHOD;
}
});
}