Skip to content
Snippets Groups Projects
Commit c2b907e9 authored by Marlène SIMONDANT's avatar Marlène SIMONDANT
Browse files

feat/US116-display-unverified-users-creation-date

parent 167feb5d
No related branches found
No related tags found
4 merge requests!418V2.1.0,!400V2.0,!293feat/US116-display-unverified-users-creation-date,!230V2.0
...@@ -105,6 +105,11 @@ export class ManageUsersComponent { ...@@ -105,6 +105,11 @@ export class ManageUsersComponent {
}, },
onCellValueChanged: this.onEmployerChange.bind(this), onCellValueChanged: this.onEmployerChange.bind(this),
}, },
{
headerName: 'Date de création',
field: 'createdAt',
minWidth: 150,
},
{ {
headerName: 'Actions', headerName: 'Actions',
editable: false, editable: false,
......
...@@ -3,6 +3,7 @@ import { Job } from './job.model'; ...@@ -3,6 +3,7 @@ import { Job } from './job.model';
export class User { export class User {
_id: string; _id: string;
createdAt: Date;
email: string; email: string;
name: string; name: string;
surname: string; surname: string;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment