Fix Card Opened Webhook can not be disabled.

Thanks to mvanvoorden and xet7 !

Closes #2932,
closes #2889,
closes #2666
This commit is contained in:
Lauri Ojansivu 2020-02-13 14:58:19 +02:00
parent 92538a6ac3
commit 178f376e21

View file

@ -1,5 +1,7 @@
Meteor.startup(() => {
if (process.env.CARD_OPENED_WEBHOOK_ENABLED) {
if (process.env.CARD_OPENED_WEBHOOK_ENABLED === 'true') {
Meteor.settings.public.CARD_OPENED_WEBHOOK_ENABLED = true;
} else {
Meteor.settings.public.CARD_OPENED_WEBHOOK_ENABLED = false;
}
});