This commit is contained in:
Bastian Wagner
2024-10-18 16:52:58 +02:00
parent ed6b2b9c45
commit 76e54cfaa0
32 changed files with 552 additions and 7 deletions

View File

@@ -48,7 +48,7 @@ export class AllUsersComponent {
, cellRenderer: (data: any) => this.datePipe.transform(new Date(data.value))
, tooltipValueGetter: (data: any) => this.datePipe.transform(new Date(data.value), 'medium')
},
{
{
field: 'lastLogin'
, headerName: 'Letzter Login'
, width: 170
@@ -61,6 +61,7 @@ export class AllUsersComponent {
}
ngOnInit(): void {
}
@@ -69,6 +70,7 @@ export class AllUsersComponent {
next: n => {
this.gridApi.setGridOption("rowData", n)
this.gridApi.setGridOption("loading", false);
n.filter(u => u.username == 'mail@bastian-wagner.de').map((u: any) => { console.log(u['lastLogin'])})
}
})
}