FEATURE: analytics client now scrape user email and room group

This commit is contained in:
Kharhamel 2021-09-30 16:14:55 +02:00
parent d0c0f3e7fc
commit 726f52976d
7 changed files with 20 additions and 8 deletions

View file

@ -24,5 +24,9 @@ export function areCharacterLayersValid(value: string[] | null): boolean {
}
export class LocalUser {
constructor(public readonly uuid: string, public textures: CharacterTexture[]) {}
constructor(
public readonly uuid: string,
public textures: CharacterTexture[],
public email: string | null = null
) {}
}