]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - shared/models/actors/follow.model.ts
Redirect to uuid video route after upload
[github/Chocobozzz/PeerTube.git] / shared / models / actors / follow.model.ts
CommitLineData
7e9334c3
C
1import { Account } from './account.model'
2
7a7724e6 3export type FollowState = 'pending' | 'accepted'
60862425
C
4
5export interface AccountFollow {
6 id: number
7e9334c3
C
7 follower: Account
8 following: Account
9 state: FollowState
10 createdAt: Date
11 updatedAt: Date
60862425 12}