Rework user interface field API names
Jenkins Production Deployment

This commit is contained in:
2023-05-14 21:09:34 +02:00
parent 02f7424b56
commit 95983021ed
6 changed files with 42 additions and 42 deletions
+4 -4
View File
@@ -1,7 +1,7 @@
export interface User {
user_id: number;
full_name: string;
password_hash: string;
userId: number;
fullName: string;
passwordHash: string;
email: string;
is_active: boolean;
isActive: boolean;
}