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 44
44
PopUpConfirmationView ,
45
45
StreamInfoView ,
46
46
StreamMembersView ,
47
+ TopicInfoView ,
47
48
UserInfoView ,
48
49
)
49
50
from zulipterminal .version import ZT_VERSION
@@ -293,6 +294,10 @@ def show_stream_info(self, stream_id: int) -> None:
293
294
show_stream_view = StreamInfoView (self , stream_id )
294
295
self .show_pop_up (show_stream_view , "area:stream" )
295
296
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
+
296
301
def show_stream_members (self , stream_id : int ) -> None :
297
302
stream_members_view = StreamMembersView (self , stream_id )
298
303
self .show_pop_up (stream_members_view , "area:stream" )
You can’t perform that action at this time.
0 commit comments