Added some CAS and SAML settings. Not tested. Please test and send pull requests if it does not work.

See https://github.com/wekan/wekan/wiki/SAML and https://github.com/wekan/wekan/wiki/CAS

Thanks to xet7 !

Related #3204,
related #708
This commit is contained in:
Lauri Ojansivu 2020-09-14 19:57:50 +03:00
parent e0192f570e
commit 214c86cc22
15 changed files with 325 additions and 7 deletions

5
server/saml.js Normal file
View file

@ -0,0 +1,5 @@
Meteor.startup(() => {
if (process.env.SAML_PROVIDER !== '') {
Meteor.settings.public.SAML_PROVIDER = process.env.SAML_PROVIDER;
}
});