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 4444 PopUpConfirmationView ,
4545 StreamInfoView ,
4646 StreamMembersView ,
47+ TopicInfoView ,
4748 UserInfoView ,
4849)
4950from zulipterminal .version import ZT_VERSION
@@ -293,6 +294,10 @@ def show_stream_info(self, stream_id: int) -> None:
293294 show_stream_view = StreamInfoView (self , stream_id )
294295 self .show_pop_up (show_stream_view , "area:stream" )
295296
297+ def show_topic_info (self , stream_id : int , topic_name : str ) -> None :
298+ show_topic_view = TopicInfoView (self , stream_id , topic_name )
299+ self .show_pop_up (show_topic_view , "area:topic" )
300+
296301 def show_stream_members (self , stream_id : int ) -> None :
297302 stream_members_view = StreamMembersView (self , stream_id )
298303 self .show_pop_up (stream_members_view , "area:stream" )
You can’t perform that action at this time.
0 commit comments