File tree Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change 36
36
PopUpConfirmationView ,
37
37
StreamInfoView ,
38
38
StreamMembersView ,
39
+ TopicInfoView ,
39
40
UserInfoView ,
40
41
)
41
42
from zulipterminal .version import ZT_VERSION
@@ -300,6 +301,10 @@ def show_stream_info(self, stream_id: int) -> None:
300
301
show_stream_view = StreamInfoView (self , stream_id )
301
302
self .show_pop_up (show_stream_view , "area:stream" )
302
303
304
+ def show_topic_info (self , stream_id : int , topic_name : str ) -> None :
305
+ show_topic_view = TopicInfoView (self , stream_id , topic_name )
306
+ self .show_pop_up (show_topic_view , "area:stream" )
307
+
303
308
def show_stream_members (self , stream_id : int ) -> None :
304
309
stream_members_view = StreamMembersView (self , stream_id )
305
310
self .show_pop_up (stream_members_view , "area:stream" )
You can’t perform that action at this time.
0 commit comments