Reorganize client shared modules
[oweals/peertube.git] / client / src / app / shared / account / account.model.ts
diff --git a/client/src/app/shared/account/account.model.ts b/client/src/app/shared/account/account.model.ts
deleted file mode 100644 (file)
index 61f09fc..0000000
+++ /dev/null
@@ -1,30 +0,0 @@
-import { Account as ServerAccount } from '../../../../../shared/models/actors/account.model'
-import { Actor } from '../actor/actor.model'
-
-export class Account extends Actor implements ServerAccount {
-  displayName: string
-  description: string
-  nameWithHost: string
-  nameWithHostForced: string
-  mutedByUser: boolean
-  mutedByInstance: boolean
-  mutedServerByUser: boolean
-  mutedServerByInstance: boolean
-
-  userId?: number
-
-  constructor (hash: ServerAccount) {
-    super(hash)
-
-    this.displayName = hash.displayName
-    this.description = hash.description
-    this.userId = hash.userId
-    this.nameWithHost = Actor.CREATE_BY_STRING(this.name, this.host)
-    this.nameWithHostForced = Actor.CREATE_BY_STRING(this.name, this.host, true)
-
-    this.mutedByUser = false
-    this.mutedByInstance = false
-    this.mutedServerByUser = false
-    this.mutedServerByInstance = false
-  }
-}