X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;ds=sidebyside;f=shared%2Fmodels%2Factors%2Ffollow.model.ts;h=70562bfc7d3278ae9e06f88e245f23bae27afd64;hb=60650c77c8a2a98e92d869b237ae4900f369a8fc;hp=cdc3da5602ffc81eeee963ab03aa6ccf0c971e03;hpb=7ae71355c40e9065f83d3fc77b6750d1929ac201;p=github%2FChocobozzz%2FPeerTube.git diff --git a/shared/models/actors/follow.model.ts b/shared/models/actors/follow.model.ts index cdc3da560..70562bfc7 100644 --- a/shared/models/actors/follow.model.ts +++ b/shared/models/actors/follow.model.ts @@ -1,11 +1,12 @@ -import { Account } from './account.model' +import { Actor } from './actor.model' export type FollowState = 'pending' | 'accepted' export interface AccountFollow { id: number - follower: Account - following: Account + follower: Actor + following: Actor + score: number state: FollowState createdAt: Date updatedAt: Date