diff options
author | Chocobozzz <florian.bigard@gmail.com> | 2017-11-15 11:00:25 +0100 |
---|---|---|
committer | Chocobozzz <florian.bigard@gmail.com> | 2017-11-27 19:40:51 +0100 |
commit | 608624252466acf9f1d9ee1c1170bd4fe4d18d18 (patch) | |
tree | 47eab55bb5421b7fe88e0b2ac743a436fd9561cf /shared/models/accounts | |
parent | 51548b31815c6f96f314ae96588a9adca150519d (diff) | |
download | PeerTube-608624252466acf9f1d9ee1c1170bd4fe4d18d18.tar.gz PeerTube-608624252466acf9f1d9ee1c1170bd4fe4d18d18.tar.zst PeerTube-608624252466acf9f1d9ee1c1170bd4fe4d18d18.zip |
Rename Pod -> Server
Diffstat (limited to 'shared/models/accounts')
-rw-r--r-- | shared/models/accounts/follow.model.ts | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/shared/models/accounts/follow.model.ts b/shared/models/accounts/follow.model.ts index 80cfe07e4..8094634c1 100644 --- a/shared/models/accounts/follow.model.ts +++ b/shared/models/accounts/follow.model.ts | |||
@@ -1 +1,8 @@ | |||
1 | export type FollowState = 'pending' | 'accepted' | 1 | export type FollowState = 'pending' | 'accepted' |
2 | |||
3 | export interface AccountFollow { | ||
4 | id: number | ||
5 | name: string | ||
6 | score?: number // Used for followers | ||
7 | host: string | ||
8 | } | ||