Skip to content

Commit f34687f

Browse files
author
James Cori
committed
Merge branch 'master' into develop
2 parents a49de09 + 1041b03 commit f34687f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

config/default.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ const KAFKA_CLIENT_KEY_PATH =
77
process.env.KAFKA_CLIENT_CERT_PATH || "./config/kafka_client.key";
88

99
module.exports = {
10-
ROCKETCHAT_ENABLED: false,
11-
VANILLA_ENABLED: true,
10+
ROCKETCHAT_ENABLED: Boolean(process.env.ROCKETCHAT_ENABLED === "true"),
11+
VANILLA_ENABLED: Boolean(process.env.VANILLA_ENABLED === "true"),
1212
LOGGER: {
1313
DISABLE_LOGGING: Boolean(process.env.DISABLE_LOGGING === "true"),
1414
LOG_LEVEL: process.env.LOG_LEVEL || "debug",

0 commit comments

Comments
 (0)