feat(interfaces): update IReqRegister interface
The `IReqRegister` interface was modified. It no longer includes the `displayName` field, but `dob`, `email`, and `password` fields were added. The 'password' property was moved to the end of the interface. Signed-off-by: Mathis <yidhra@tuta.io>
This commit is contained in:
parent
f1272ca2c8
commit
9225337e95
@ -1,8 +1,9 @@
|
||||
export interface IReqRegister {
|
||||
username: string;
|
||||
displayName: string;
|
||||
firstName: string;
|
||||
lastName: string;
|
||||
password: string;
|
||||
dob: Date;
|
||||
email: string;
|
||||
gdpr?: boolean;
|
||||
password: string;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user