diff options
Diffstat (limited to 'client/src/app/shared')
-rw-r--r-- | client/src/app/shared/users/user.model.ts | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/client/src/app/shared/users/user.model.ts b/client/src/app/shared/users/user.model.ts index b4d13f37c..7a962ae3e 100644 --- a/client/src/app/shared/users/user.model.ts +++ b/client/src/app/shared/users/user.model.ts | |||
@@ -8,6 +8,7 @@ export type UserConstructorHash = { | |||
8 | role: UserRole, | 8 | role: UserRole, |
9 | videoQuota?: number, | 9 | videoQuota?: number, |
10 | displayNSFW?: boolean, | 10 | displayNSFW?: boolean, |
11 | autoPlayVideo?: boolean, | ||
11 | createdAt?: Date, | 12 | createdAt?: Date, |
12 | account?: Account, | 13 | account?: Account, |
13 | videoChannels?: VideoChannel[] | 14 | videoChannels?: VideoChannel[] |
@@ -18,6 +19,7 @@ export class User implements UserServerModel { | |||
18 | email: string | 19 | email: string |
19 | role: UserRole | 20 | role: UserRole |
20 | displayNSFW: boolean | 21 | displayNSFW: boolean |
22 | autoPlayVideo: boolean | ||
21 | videoQuota: number | 23 | videoQuota: number |
22 | account: Account | 24 | account: Account |
23 | videoChannels: VideoChannel[] | 25 | videoChannels: VideoChannel[] |
@@ -42,6 +44,10 @@ export class User implements UserServerModel { | |||
42 | this.displayNSFW = hash.displayNSFW | 44 | this.displayNSFW = hash.displayNSFW |
43 | } | 45 | } |
44 | 46 | ||
47 | if (hash.autoPlayVideo !== undefined) { | ||
48 | this.autoPlayVideo = hash.autoPlayVideo | ||
49 | } | ||
50 | |||
45 | if (hash.createdAt !== undefined) { | 51 | if (hash.createdAt !== undefined) { |
46 | this.createdAt = hash.createdAt | 52 | this.createdAt = hash.createdAt |
47 | } | 53 | } |