Skip to content

Commit

Permalink
fix: request_uri field in space invitation request
Browse files Browse the repository at this point in the history
  • Loading branch information
NicolasRichel committed Jul 12, 2022
1 parent 7679100 commit f3e68c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/services/SpaceService.js
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ class SpaceService {
try {
return await apiClient.collaborationApi.inviteCloudUser(space.id, {
email: invitation.email,
redirectUri: `${process.env.VUE_APP_BASE_URL}/spaces/${space.id}`
redirect_uri: `${process.env.VUE_APP_BASE_URL}/spaces/${space.id}`
});
} catch (error) {
if (error.status === 400 && (await error.json()).already_exists) {
Expand Down

0 comments on commit f3e68c5

Please sign in to comment.