Add frontend.
This commit is contained in:
4
frontend/src/app/core/model/FormError.ts
Normal file
4
frontend/src/app/core/model/FormError.ts
Normal file
@@ -0,0 +1,4 @@
|
||||
export interface FormError {
|
||||
fieldName: string;
|
||||
errorMessage: string;
|
||||
}
|
||||
7
frontend/src/app/core/model/User.ts
Normal file
7
frontend/src/app/core/model/User.ts
Normal file
@@ -0,0 +1,7 @@
|
||||
export interface User {
|
||||
id: string;
|
||||
email: string;
|
||||
pseudo: string;
|
||||
photoId?: string;
|
||||
roles: string[];
|
||||
}
|
||||
Reference in New Issue
Block a user