Skip to content
Snippets Groups Projects
Commit a3dd18d6 authored by Mélissa Aïdli's avatar Mélissa Aïdli
Browse files

Merge branch 'new_signup' of https://github.com/oser-cs/oser-frontend into new_signup

parents 739aae3e 18ce4737
Branches
No related tags found
1 merge request!80New signup
......@@ -6,7 +6,7 @@ class RegistrationSchema {
firstName: string;
lastName: string;
phoneNumber: string;
dateOfBirth : string;
dateOfBirth : Date;
}
export class Registration extends RegistrationSchema {
......@@ -30,7 +30,7 @@ export class RegistrationAdapter {
first_name: obj.firstName,
last_name: obj.lastName,
phone_number: obj.phoneNumber,
date_of_birth : obj.dateOfBirth,
dateOfBirth : obj.dateOfBirth,
}
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment