feat(invitations): completed admin UI, with minor changes to backend

This commit is contained in:
DecDuck
2024-11-07 23:23:49 +11:00
parent c7b675f841
commit 599da0e348
8 changed files with 677 additions and 1 deletions

View File

@ -202,7 +202,7 @@ const invitation = await useFetch(
`/api/v1/auth/signup/simple?id=${encodeURIComponent(invitationId)}`
);
const email = ref(invitation.data.value?.username);
const email = ref(invitation.data.value?.email);
const displayName = ref("");
const username = ref(invitation.data.value?.username);
const password = ref("");