Feature/improve users table (#291)

* Improve users table
  * Engagement / Day
  * Registration

* Update changelog
This commit is contained in:
Thomas
2021-08-14 11:12:08 +02:00
committed by GitHub
parent 13090bf6b5
commit 77936e3bf3
4 changed files with 33 additions and 13 deletions

View File

@@ -4,12 +4,12 @@ export interface AdminData {
transactionCount: number;
userCount: number;
users: {
accountCount: number;
alias: string;
createdAt: Date;
Analytics: {
activityCount: number;
updatedAt: Date;
};
engagement: number;
id: string;
lastActivity: Date;
transactionCount: number;
}[];
}