diff options
author | Chocobozzz <me@florianbigard.com> | 2020-06-26 08:37:26 +0200 |
---|---|---|
committer | Chocobozzz <chocobozzz@cpy.re> | 2020-08-07 08:28:14 +0200 |
commit | 583eb04b541175035d6d452ca626a96ebf2b7437 (patch) | |
tree | 114ba0a7004b4b2a7fc77444ef5fcb73414c6e93 /shared/models/videos/video.model.ts | |
parent | 4504f09f6e85f09b0489debb547a17209d7176ea (diff) | |
download | PeerTube-583eb04b541175035d6d452ca626a96ebf2b7437.tar.gz PeerTube-583eb04b541175035d6d452ca626a96ebf2b7437.tar.zst PeerTube-583eb04b541175035d6d452ca626a96ebf2b7437.zip |
Upgrade to angular 10
Diffstat (limited to 'shared/models/videos/video.model.ts')
-rw-r--r-- | shared/models/videos/video.model.ts | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/shared/models/videos/video.model.ts b/shared/models/videos/video.model.ts index 0f8822125..557e66e09 100644 --- a/shared/models/videos/video.model.ts +++ b/shared/models/videos/video.model.ts | |||
@@ -1,11 +1,11 @@ | |||
1 | import { AccountSummary, VideoChannelSummary, VideoState } from '../../index' | 1 | import { Account, AccountSummary } from '../actors' |
2 | import { Account } from '../actors' | 2 | import { VideoChannel, VideoChannelSummary } from './channel/video-channel.model' |
3 | import { VideoChannel } from './channel/video-channel.model' | 3 | import { VideoConstant } from './video-constant.model' |
4 | import { VideoFile } from './video-file.model' | ||
4 | import { VideoPrivacy } from './video-privacy.enum' | 5 | import { VideoPrivacy } from './video-privacy.enum' |
5 | import { VideoScheduleUpdate } from './video-schedule-update.model' | 6 | import { VideoScheduleUpdate } from './video-schedule-update.model' |
6 | import { VideoConstant } from './video-constant.model' | 7 | import { VideoState } from './video-state.enum' |
7 | import { VideoStreamingPlaylist } from './video-streaming-playlist.model' | 8 | import { VideoStreamingPlaylist } from './video-streaming-playlist.model' |
8 | import { VideoFile } from './video-file.model' | ||
9 | 9 | ||
10 | export interface Video { | 10 | export interface Video { |
11 | id: number | 11 | id: number |