diff options
author | Chocobozzz <me@florianbigard.com> | 2018-08-14 14:59:53 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2018-08-14 15:00:01 +0200 |
commit | 59c76ffa8f503e962d517c78f033f1beccb1de1a (patch) | |
tree | d567991b10cffd59322dd679d5188e7d1ec7ddce /shared/models/videos/video-import.model.ts | |
parent | 13b6dc1f3437560c55a5dfc3a94a2b162654e5c9 (diff) | |
download | PeerTube-59c76ffa8f503e962d517c78f033f1beccb1de1a.tar.gz PeerTube-59c76ffa8f503e962d517c78f033f1beccb1de1a.tar.zst PeerTube-59c76ffa8f503e962d517c78f033f1beccb1de1a.zip |
Flat shared module directory
Diffstat (limited to 'shared/models/videos/video-import.model.ts')
-rw-r--r-- | shared/models/videos/video-import.model.ts | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/shared/models/videos/video-import.model.ts b/shared/models/videos/video-import.model.ts deleted file mode 100644 index 293854006..000000000 --- a/shared/models/videos/video-import.model.ts +++ /dev/null | |||
@@ -1,18 +0,0 @@ | |||
1 | import { Video } from './video.model' | ||
2 | import { VideoConstant } from './video-constant.model' | ||
3 | import { VideoImportState } from './video-import-state.enum' | ||
4 | |||
5 | export interface VideoImport { | ||
6 | id: number | ||
7 | |||
8 | targetUrl: string | ||
9 | magnetUri: string | ||
10 | torrentName: string | ||
11 | |||
12 | createdAt: string | ||
13 | updatedAt: string | ||
14 | state: VideoConstant<VideoImportState> | ||
15 | error?: string | ||
16 | |||
17 | video?: Video & { tags: string[] } | ||
18 | } | ||