@@ -48,6 +48,7 @@ export class Config {
4848 Config . amqp_prefetch = parseInt ( Config . getEnv ( "amqp_prefetch" , "50" ) ) ;
4949 Config . enable_entity_restriction = Config . parseBoolean ( Config . getEnv ( "enable_entity_restriction" , "false" ) ) ;
5050 Config . enable_web_tours = Config . parseBoolean ( Config . getEnv ( "enable_web_tours" , "true" ) ) ;
51+ Config . enable_nodered_tours = Config . parseBoolean ( Config . getEnv ( "enable_nodered_tours" , "true" ) ) ;
5152 Config . auto_hourly_housekeeping = Config . parseBoolean ( Config . getEnv ( "auto_hourly_housekeeping" , "false" ) ) ;
5253 Config . housekeeping_update_usage_hourly = Config . parseBoolean ( Config . getEnv ( "housekeeping_update_usage_hourly" , "false" ) ) ;
5354 Config . housekeeping_update_usersize_hourly = Config . parseBoolean ( Config . getEnv ( "housekeeping_update_usersize_hourly" , "true" ) ) ;
@@ -241,6 +242,7 @@ export class Config {
241242 public static amqp_prefetch : number = parseInt ( Config . getEnv ( "amqp_prefetch" , "50" ) ) ;
242243 public static enable_entity_restriction : boolean = Config . parseBoolean ( Config . getEnv ( "enable_entity_restriction" , "false" ) ) ;
243244 public static enable_web_tours : boolean = Config . parseBoolean ( Config . getEnv ( "enable_web_tours" , "true" ) ) ;
245+ public static enable_nodered_tours : boolean = Config . parseBoolean ( Config . getEnv ( "enable_nodered_tours" , "true" ) ) ;
244246 public static auto_hourly_housekeeping : boolean = Config . parseBoolean ( Config . getEnv ( "auto_hourly_housekeeping" , "true" ) ) ;
245247 public static housekeeping_update_usage_hourly : boolean = Config . parseBoolean ( Config . getEnv ( "housekeeping_update_usage_hourly" , "false" ) ) ;
246248 public static housekeeping_update_usersize_hourly : boolean = Config . parseBoolean ( Config . getEnv ( "housekeeping_update_usersize_hourly" , "true" ) ) ;
0 commit comments