diff options
Diffstat (limited to 'client/src/app/shared/users')
-rw-r--r-- | client/src/app/shared/users/user.model.ts | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/client/src/app/shared/users/user.model.ts b/client/src/app/shared/users/user.model.ts index 95a6ce9f9..53809f82c 100644 --- a/client/src/app/shared/users/user.model.ts +++ b/client/src/app/shared/users/user.model.ts | |||
@@ -26,6 +26,8 @@ export class User implements UserServerModel { | |||
26 | videoChannels: VideoChannel[] | 26 | videoChannels: VideoChannel[] |
27 | createdAt: Date | 27 | createdAt: Date |
28 | 28 | ||
29 | theme: string | ||
30 | |||
29 | adminFlags?: UserAdminFlag | 31 | adminFlags?: UserAdminFlag |
30 | 32 | ||
31 | blocked: boolean | 33 | blocked: boolean |
@@ -49,6 +51,8 @@ export class User implements UserServerModel { | |||
49 | this.autoPlayVideo = hash.autoPlayVideo | 51 | this.autoPlayVideo = hash.autoPlayVideo |
50 | this.createdAt = hash.createdAt | 52 | this.createdAt = hash.createdAt |
51 | 53 | ||
54 | this.theme = hash.theme | ||
55 | |||
52 | this.adminFlags = hash.adminFlags | 56 | this.adminFlags = hash.adminFlags |
53 | 57 | ||
54 | this.blocked = hash.blocked | 58 | this.blocked = hash.blocked |