diff options
author | Chocobozzz <me@florianbigard.com> | 2018-01-11 09:35:50 +0100 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2018-01-11 09:35:50 +0100 |
commit | 60650c77c8a2a98e92d869b237ae4900f369a8fc (patch) | |
tree | 7304a7591b5b23b99d219c4d06c6bd5c4c58c1c2 /shared/models/videos/video-channel.model.ts | |
parent | 7ae71355c40e9065f83d3fc77b6750d1929ac201 (diff) | |
download | PeerTube-60650c77c8a2a98e92d869b237ae4900f369a8fc.tar.gz PeerTube-60650c77c8a2a98e92d869b237ae4900f369a8fc.tar.zst PeerTube-60650c77c8a2a98e92d869b237ae4900f369a8fc.zip |
Add scores to follows and remove bad ones
Diffstat (limited to 'shared/models/videos/video-channel.model.ts')
-rw-r--r-- | shared/models/videos/video-channel.model.ts | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/shared/models/videos/video-channel.model.ts b/shared/models/videos/video-channel.model.ts index d1a952826..b164fb555 100644 --- a/shared/models/videos/video-channel.model.ts +++ b/shared/models/videos/video-channel.model.ts | |||
@@ -1,13 +1,10 @@ | |||
1 | import { Actor } from '../actors/actor.model' | ||
1 | import { Video } from './video.model' | 2 | import { Video } from './video.model' |
2 | 3 | ||
3 | export interface VideoChannel { | 4 | export interface VideoChannel extends Actor { |
4 | id: number | 5 | displayName: string |
5 | name: string | ||
6 | url: string | ||
7 | description: string | 6 | description: string |
8 | isLocal: boolean | 7 | isLocal: boolean |
9 | createdAt: Date | string | ||
10 | updatedAt: Date | string | ||
11 | owner?: { | 8 | owner?: { |
12 | name: string | 9 | name: string |
13 | uuid: string | 10 | uuid: string |