File tree Expand file tree Collapse file tree 1 file changed +29
-0
lines changed
apps/meteor/client/views/room/contextualBar/RoomMembers Expand file tree Collapse file tree 1 file changed +29
-0
lines changed Original file line number Diff line number Diff line change @@ -71,3 +71,32 @@ WithABACRoom.args = {
7171 reload : action ( 'reload' ) ,
7272 isABACRoom : true ,
7373} ;
74+
75+ export const WithInvitedMember = Template . bind ( { } ) ;
76+ WithInvitedMember . args = {
77+ loading : false ,
78+ members : [
79+ {
80+ _id : 'rocket.cat' ,
81+ username : 'rocket.cat' ,
82+ roles : [ 'user' ] ,
83+ subscription : {
84+ _id : 'sub-rocket.cat' ,
85+ status : 'INVITED' ,
86+ ts : '2025-01-01T00:00:00Z' ,
87+ } ,
88+ name : 'Rocket.Cat' ,
89+ } ,
90+ ] ,
91+ text : 'filter' ,
92+ type : 'online' ,
93+ setText : action ( 'Lorem Ipsum' ) ,
94+ setType : action ( 'online' ) ,
95+ total : 123 ,
96+ loadMoreItems : action ( 'loadMoreItems' ) ,
97+ rid : '!roomId' ,
98+ isTeam : false ,
99+ isDirect : false ,
100+ reload : action ( 'reload' ) ,
101+ isABACRoom : true ,
102+ } ;
You can’t perform that action at this time.
0 commit comments