Changed main menu text
This commit is contained in:
parent
602e9b62d8
commit
45ce5da0ac
2 changed files with 5 additions and 1 deletions
|
|
@ -11,4 +11,7 @@ namespace BotConstants {
|
||||||
const std::string FIND_ANIME = "action:find_anime";
|
const std::string FIND_ANIME = "action:find_anime";
|
||||||
const std::string MY_TITLES = "navigation:my_titles";
|
const std::string MY_TITLES = "navigation:my_titles";
|
||||||
}
|
}
|
||||||
|
namespace Text {
|
||||||
|
const std::string MAIN_MENU = "Вас приветствует nyanimedb бот:)\nЧего будем делать?";
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,6 @@
|
||||||
#include "front.hpp"
|
#include "front.hpp"
|
||||||
#include "KeyboardFactory.hpp"
|
#include "KeyboardFactory.hpp"
|
||||||
|
#include "constants.hpp"
|
||||||
|
|
||||||
AnimeBot::AnimeBot(const std::string& token) : bot(token) {
|
AnimeBot::AnimeBot(const std::string& token) : bot(token) {
|
||||||
setupHandlers();
|
setupHandlers();
|
||||||
|
|
@ -13,7 +14,7 @@ void AnimeBot::setupHandlers() {
|
||||||
|
|
||||||
void AnimeBot::sendMainMenu(int64_t chatId) {
|
void AnimeBot::sendMainMenu(int64_t chatId) {
|
||||||
auto keyboard = KeyboardFactory::createMainMenu();
|
auto keyboard = KeyboardFactory::createMainMenu();
|
||||||
bot.getApi().sendMessage(chatId, "Главное меню", nullptr, nullptr, keyboard);
|
bot.getApi().sendMessage(chatId, BotConstants::Text::MAIN_MENU, nullptr, nullptr, keyboard);
|
||||||
}
|
}
|
||||||
|
|
||||||
TgBot::Bot& AnimeBot::getBot() {
|
TgBot::Bot& AnimeBot::getBot() {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue