WIP: backend protection

This commit is contained in:
2022-12-06 12:27:09 +01:00
parent 7330fb90f2
commit 55b5150049
23 changed files with 499 additions and 114 deletions

View File

@@ -2,8 +2,8 @@ export class User {
id!: string;
email!: string;
userName!: string;
googleId!: string;
avatar?: string | ArrayBuffer;
googleCredentials!: string;
avatar?: string;
constructor(input: any) {
Object.assign(this, input)
}