BETTERZON-75: Adding backend functions to enable user registration

This commit is contained in:
2021-04-28 21:41:32 +02:00
parent 21d5294a57
commit 820decd8f0
8 changed files with 1003 additions and 38 deletions
@@ -0,0 +1,9 @@
export interface User {
user_id: number;
username: string;
email: string;
password_hash: string;
hashing_salt: string;
registration_date: Date;
last_login_date: Date;
}