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 43
43
PopUpConfirmationView ,
44
44
StreamInfoView ,
45
45
StreamMembersView ,
46
+ TopicInfoView ,
46
47
UserInfoView ,
47
48
)
48
49
from zulipterminal .version import ZT_VERSION
@@ -305,6 +306,10 @@ def show_stream_info(self, stream_id: int) -> None:
305
306
show_stream_view = StreamInfoView (self , stream_id )
306
307
self .show_pop_up (show_stream_view , "area:stream" )
307
308
309
+ def show_topic_info (self , stream_id : int , topic_name : str ) -> None :
310
+ show_topic_view = TopicInfoView (self , stream_id , topic_name )
311
+ self .show_pop_up (show_topic_view , "area:topic" )
312
+
308
313
def show_stream_members (self , stream_id : int ) -> None :
309
314
stream_members_view = StreamMembersView (self , stream_id )
310
315
self .show_pop_up (stream_members_view , "area:stream" )
You can’t perform that action at this time.
0 commit comments