aboutsummaryrefslogtreecommitdiffhomepage
path: root/td/telegram/ForumTopicManager.h
diff options
context:
space:
mode:
authorlevlam <levlam@telegram.org>2022-12-05 13:03:38 +0300
committerlevlam <levlam@telegram.org>2022-12-05 13:03:38 +0300
commitec0dd68a57ea1ce08a7ed9451d25571d73aa2177 (patch)
tree1e431821175ce888bafc1b967fde022cf2dabcff /td/telegram/ForumTopicManager.h
parent6e2c2d9e039503b24411c02b41ac7b815ddc3b93 (diff)
Add td_api::getForumTopicLink.
Diffstat (limited to 'td/telegram/ForumTopicManager.h')
-rw-r--r--td/telegram/ForumTopicManager.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/td/telegram/ForumTopicManager.h b/td/telegram/ForumTopicManager.h
index 3a6e526f1..dd28bb595 100644
--- a/td/telegram/ForumTopicManager.h
+++ b/td/telegram/ForumTopicManager.h
@@ -46,6 +46,8 @@ class ForumTopicManager final : public Actor {
void get_forum_topic(DialogId dialog_id, MessageId top_thread_message_id,
Promise<td_api::object_ptr<td_api::forumTopic>> &&promise);
+ void get_forum_topic_link(DialogId dialog_id, MessageId top_thread_message_id, Promise<string> &&promise);
+
void toggle_forum_topic_is_closed(DialogId dialog_id, MessageId top_thread_message_id, bool is_closed,
Promise<Unit> &&promise);