Skip to content

Commit ea12207

Browse files
committed
fix: Added username field in schema and types
1 parent cdc8774 commit ea12207

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

apps/meteor/app/api/server/v1/groups.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ type GroupsInvitesProps = {
5252
roomName?: string;
5353
userId?: string;
5454
userIds?: string[];
55+
username?:string;
5556
usernames?: string[];
5657
};
5758

@@ -65,6 +66,9 @@ const isGroupsInvitePropSchema = withGroupBaseProperties({
6566
type: 'string',
6667
},
6768
},
69+
username: {
70+
type: 'string'
71+
},
6872
usernames: {
6973
type: 'array',
7074
items: {

0 commit comments

Comments
 (0)