From ca37c96de0f2a5beb097f560949ecfaeb7a86880 Mon Sep 17 00:00:00 2001 From: Vitaly Takmazov Date: Thu, 14 Jun 2018 15:04:16 +0300 Subject: Do not initialize telegram bot when token is missing --- .../src/main/java/com/juick/server/api/webhooks/TelegramWebhook.java | 2 ++ 1 file changed, 2 insertions(+) (limited to 'juick-server/src/main/java/com/juick/server/api') diff --git a/juick-server/src/main/java/com/juick/server/api/webhooks/TelegramWebhook.java b/juick-server/src/main/java/com/juick/server/api/webhooks/TelegramWebhook.java index 9c4f64ce..10fd1ab3 100644 --- a/juick-server/src/main/java/com/juick/server/api/webhooks/TelegramWebhook.java +++ b/juick-server/src/main/java/com/juick/server/api/webhooks/TelegramWebhook.java @@ -19,6 +19,7 @@ package com.juick.server.api.webhooks; import com.juick.server.TelegramBotManager; import org.apache.commons.io.IOUtils; +import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty; import org.springframework.http.HttpStatus; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMethod; @@ -35,6 +36,7 @@ import java.nio.charset.StandardCharsets; */ @ApiIgnore @RestController +@ConditionalOnProperty(name = "telegram_token") public class TelegramWebhook { @Inject private TelegramBotManager telegramBotManager; -- cgit v1.2.3