aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/models/actors/follow.model.ts
diff options
context:
space:
mode:
Diffstat (limited to 'shared/models/actors/follow.model.ts')
-rw-r--r--shared/models/actors/follow.model.ts13
1 files changed, 0 insertions, 13 deletions
diff --git a/shared/models/actors/follow.model.ts b/shared/models/actors/follow.model.ts
deleted file mode 100644
index 244d6d97e..000000000
--- a/shared/models/actors/follow.model.ts
+++ /dev/null
@@ -1,13 +0,0 @@
1import { Actor } from './actor.model'
2
3export type FollowState = 'pending' | 'accepted' | 'rejected'
4
5export interface ActorFollow {
6 id: number
7 follower: Actor & { hostRedundancyAllowed: boolean }
8 following: Actor & { hostRedundancyAllowed: boolean }
9 score: number
10 state: FollowState
11 createdAt: Date
12 updatedAt: Date
13}