Skip to content

Commit

Permalink
send accountIDList to backend
Browse files Browse the repository at this point in the history
  • Loading branch information
dangrous committed Aug 5, 2024
1 parent 4a558f4 commit 57df972
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/libs/API/parameters/InviteToRoomParams.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
type InviteToRoomParams = {
reportID: string;
inviteeEmails: string[];
accountIDList: string;
};

export default InviteToRoomParams;
1 change: 1 addition & 0 deletions src/libs/actions/Report.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2887,6 +2887,7 @@ function inviteToRoom(reportID: string, inviteeEmailsToAccountIDs: InvitedEmails
const parameters: InviteToRoomParams = {
reportID,
inviteeEmails,
accountIDList: newAccountIDs.join(),
};

// eslint-disable-next-line rulesdir/no-multiple-api-calls
Expand Down

0 comments on commit 57df972

Please sign in to comment.