Add state and moderationComment for abuses on server side
[oweals/peertube.git] / shared / models / actors / follow.model.ts
1 import { Actor } from './actor.model'
2
3 export type FollowState = 'pending' | 'accepted'
4
5 export interface AccountFollow {
6   id: number
7   follower: Actor
8   following: Actor
9   score: number
10   state: FollowState
11   createdAt: Date
12   updatedAt: Date
13 }