From 67ed6552b831df66713bac9e672738796128d33f Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Tue, 23 Jun 2020 14:10:17 +0200 Subject: Reorganize client shared modules --- client/src/app/shared/account/account.model.ts | 30 -------------------------- 1 file changed, 30 deletions(-) delete mode 100644 client/src/app/shared/account/account.model.ts (limited to '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 index 61f09fc06..000000000 --- a/client/src/app/shared/account/account.model.ts +++ /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 - } -} -- cgit v1.2.3