Skip to content

Commit

Permalink
Merge pull request #737 from walt-id/fix/portal-registration-endpoint
Browse files Browse the repository at this point in the history
fix: update registration endpoint
  • Loading branch information
chsavvaidis authored Sep 6, 2024
2 parents f28e31a + 6ee59dc commit 5ec0016
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ async function register() {
password: passwordInput,
type: "email",
};
await $fetch("/wallet-api/auth/create", {
await $fetch("/wallet-api/auth/register", {
method: "POST",
body: user,
})
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ async function submit() {
password: passwordInput,
type: "email",
};
await $fetch("/wallet-api/auth/create", {
await $fetch("/wallet-api/auth/register", {
method: "POST",
body: user,
})
Expand Down

0 comments on commit 5ec0016

Please sign in to comment.