From 50d6de9c286abcb34ff4234d56d9cbb803db7665 Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Thu, 14 Dec 2017 17:38:41 +0100 Subject: Begin moving video channel to actor --- shared/models/accounts/follow.model.ts | 12 ------------ 1 file changed, 12 deletions(-) delete mode 100644 shared/models/accounts/follow.model.ts (limited to 'shared/models/accounts/follow.model.ts') diff --git a/shared/models/accounts/follow.model.ts b/shared/models/accounts/follow.model.ts deleted file mode 100644 index cdc3da560..000000000 --- a/shared/models/accounts/follow.model.ts +++ /dev/null @@ -1,12 +0,0 @@ -import { Account } from './account.model' - -export type FollowState = 'pending' | 'accepted' - -export interface AccountFollow { - id: number - follower: Account - following: Account - state: FollowState - createdAt: Date - updatedAt: Date -} -- cgit v1.2.3