Commit 1217bb0 1 parent c488170 commit 1217bb0 Copy full SHA for 1217bb0
File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -81,19 +81,19 @@ export class Group extends Conversation {
81
81
return this . #conversation. isSuperAdmin ( inboxId ) ;
82
82
}
83
83
84
- async addMembers ( identifiers : Identifier [ ] ) {
84
+ async addMembersByIdentifiers ( identifiers : Identifier [ ] ) {
85
85
return this . #conversation. addMembers ( identifiers ) ;
86
86
}
87
87
88
- async addMembersByInboxId ( inboxIds : string [ ] ) {
88
+ async addMembers ( inboxIds : string [ ] ) {
89
89
return this . #conversation. addMembersByInboxId ( inboxIds ) ;
90
90
}
91
91
92
- async removeMembers ( identifiers : Identifier [ ] ) {
92
+ async removeMembersByIdentifiers ( identifiers : Identifier [ ] ) {
93
93
return this . #conversation. removeMembers ( identifiers ) ;
94
94
}
95
95
96
- async removeMembersByInboxId ( inboxIds : string [ ] ) {
96
+ async removeMembers ( inboxIds : string [ ] ) {
97
97
return this . #conversation. removeMembersByInboxId ( inboxIds ) ;
98
98
}
99
99
You can’t perform that action at this time.
0 commit comments