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