feat: invite new user with email

This commit is contained in:
Elias Schneider
2023-02-21 08:51:04 +01:00
parent 759c55f625
commit f9840505b8
10 changed files with 111 additions and 29 deletions

View File

@@ -9,7 +9,7 @@ type User = {
export type CreateUser = {
username: string;
email: string;
password: string;
password?: string;
isAdmin?: boolean;
};