-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: delete organization invitations #375
Conversation
Signed-off-by: sanjay-k1910 <[email protected]>
…nto feat-delete-org-invitations Signed-off-by: sanjay-k1910 <[email protected]>
Signed-off-by: sanjay-k1910 <[email protected]>
@Res() res: Response | ||
): Promise<Response> { | ||
await this.organizationService.deleteOrganizationInvitation(orgId, invitationId); | ||
const finalResponse: IResponseType = { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's replace IResponseType with IResponse
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Resolved.
…nto feat-delete-org-invitations
Signed-off-by: sanjay-k1910 <[email protected]>
Quality Gate passedKudos, no new issues were introduced! 0 New issues |
What
Implemented delete organization invitation API.
Why
To enable the user to delete an organization invitation before the invitation is accepted or rejected.
How
Implemented a function that accepts an
invitationId
andorgId
as a parameter and deletes the organization invitation.Task
#359