add user telegram notifications

This commit is contained in:
Dmitry Verkhoturov
2021-07-03 14:57:09 -05:00
committed by Umputun
parent 7f081e1d2c
commit 200733ed03
12 changed files with 392 additions and 112 deletions
+1
View File
@@ -16,6 +16,7 @@ beforeEach(() => {
simple_view: false,
anon_vote: false,
email_notifications: false,
telegram_bot_username: "",
emoji_enabled: true,
};
});
+1
View File
@@ -29,6 +29,7 @@ export const StaticStore: StaticStoreType = {
simple_view: false,
anon_vote: false,
email_notifications: false,
telegram_bot_username: "",
emoji_enabled: false,
},
query: querySettings as QuerySettingsType,
+1
View File
@@ -114,6 +114,7 @@ export interface Config {
simple_view: boolean;
anon_vote: boolean;
email_notifications: boolean;
telegram_bot_username: string;
emoji_enabled: boolean;
}