chore: update get invitation details endpoint (#2902)

This commit is contained in:
Aaryan Khandelwal 2023-11-28 11:30:03 +05:30 committed by sriram veeraghanta
parent c4fb543372
commit ad22ff222f
2 changed files with 7 additions and 5 deletions

View file

@ -157,8 +157,8 @@ export class WorkspaceService extends APIService {
});
}
async getWorkspaceInvitation(invitationId: string): Promise<IWorkspaceMemberInvitation> {
return this.get(`/api/users/me/invitations/${invitationId}/`, { headers: {} })
async getWorkspaceInvitation(workspaceSlug: string, invitationId: string): Promise<IWorkspaceMemberInvitation> {
return this.get(`/api/workspaces/${workspaceSlug}/invitations/${invitationId}/join/`, { headers: {} })
.then((response) => response?.data)
.catch((error) => {
throw error?.response?.data;