Feature/remove alias from user interface (#1083)

* Remove alias from user interface

* Update changelog
This commit is contained in:
Thomas Kaul
2022-07-17 11:05:23 +02:00
committed by GitHub
parent e9dbd4a55d
commit 95bcc3f32d
8 changed files with 11 additions and 26 deletions

View File

@@ -5,7 +5,6 @@ export interface AdminData {
userCount: number;
users: {
accountCount: number;
alias: string;
createdAt: Date;
engagement: number;
id: string;

View File

@@ -8,7 +8,6 @@ export interface User {
id: string;
}[];
accounts: Account[];
alias?: string;
id: string;
permissions: string[];
settings: UserSettings;