Add LINKED_CARDS_ENABLED env var

This commit is contained in:
Akuket 2019-11-28 11:55:36 +01:00
parent 8898862d36
commit 07724f99ae
5 changed files with 17 additions and 2 deletions

View file

@ -334,6 +334,10 @@ if (Meteor.isServer) {
getDefaultAuthenticationMethod() {
return process.env.DEFAULT_AUTHENTICATION_METHOD;
},
getLinkedCardsEnabled() {
return process.env.LINKED_CARDS_ENABLED === 'true';
}
});
}