Upgrade to proper user management

This commit is contained in:
2023-05-14 19:17:30 +02:00
parent 93c70b0e1d
commit 02f7424b56
9 changed files with 393 additions and 32 deletions
@@ -0,0 +1,7 @@
export interface User {
user_id: number;
full_name: string;
password_hash: string;
email: string;
is_active: boolean;
}