mirror of
https://github.com/wekan/wekan.git
synced 2025-04-21 12:37:07 -04:00
See https://github.com/wekan/wekan/wiki/SAML and https://github.com/wekan/wekan/wiki/CAS Thanks to xet7 ! Related #3204, related #708
5 lines
143 B
JavaScript
5 lines
143 B
JavaScript
Meteor.startup(() => {
|
|
if (process.env.SAML_PROVIDER !== '') {
|
|
Meteor.settings.public.SAML_PROVIDER = process.env.SAML_PROVIDER;
|
|
}
|
|
});
|