Skip to content

Commit

Permalink
Fix audit trails for invite user to participant
Browse files Browse the repository at this point in the history
  • Loading branch information
alex-yau-ttd committed Sep 3, 2024
1 parent 490f8db commit eba920d
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/api/routers/participants/participantsUsers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,9 @@ export async function handleInviteUserToParticipant(req: UserParticipantRequest,
firstName: userPartial.firstName,
lastName: userPartial.lastName,
email: userPartial.email,
jonFunction: userPartial.jobFunction,
}
jobFunction: userPartial.jobFunction,
},
participant!.id
);

await performAsyncOperationWithAuditTrail(auditTrailInsertObject, traceId, async () => {
Expand Down

0 comments on commit eba920d

Please sign in to comment.