BETTERZON-75: User registration API endpoint (#34)

* BETTERZON-75: Adding backend functions to enable user registration

* BETTERZON-75: Adding regex to check email and username
This commit is contained in:
Patrick
2021-04-29 09:42:34 +02:00
committed by GitHub
parent f7c045b5a3
commit a3ac897818
8 changed files with 1018 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;
}