aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/shared/shared-main/account/account.model.ts
diff options
context:
space:
mode:
Diffstat (limited to 'client/src/app/shared/shared-main/account/account.model.ts')
-rw-r--r--client/src/app/shared/shared-main/account/account.model.ts30
1 files changed, 30 insertions, 0 deletions
diff --git a/client/src/app/shared/shared-main/account/account.model.ts b/client/src/app/shared/shared-main/account/account.model.ts
new file mode 100644
index 000000000..6df2e9d10
--- /dev/null
+++ b/client/src/app/shared/shared-main/account/account.model.ts
@@ -0,0 +1,30 @@
1import { Account as ServerAccount } from '@shared/models/actors/account.model'
2import { Actor } from './actor.model'
3
4export class Account extends Actor implements ServerAccount {
5 displayName: string
6 description: string
7 nameWithHost: string
8 nameWithHostForced: string
9 mutedByUser: boolean
10 mutedByInstance: boolean
11 mutedServerByUser: boolean
12 mutedServerByInstance: boolean
13
14 userId?: number
15
16 constructor (hash: ServerAccount) {
17 super(hash)
18
19 this.displayName = hash.displayName
20 this.description = hash.description
21 this.userId = hash.userId
22 this.nameWithHost = Actor.CREATE_BY_STRING(this.name, this.host)
23 this.nameWithHostForced = Actor.CREATE_BY_STRING(this.name, this.host, true)
24
25 this.mutedByUser = false
26 this.mutedByInstance = false
27 this.mutedServerByUser = false
28 this.mutedServerByInstance = false
29 }
30}