]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - shared/models/videos/video.model.ts
Add http tracker in torrent too
[github/Chocobozzz/PeerTube.git] / shared / models / videos / video.model.ts
index dc12a05d916e3fd8655e8ff82d5d8c9db4dcc800..39d1edc061253f6182ed11a161fb2551fb5e7276 100644 (file)
@@ -1,4 +1,4 @@
-import { Account } from '../accounts'
+import { Account } from '../actors'
 import { VideoChannel } from './video-channel.model'
 import { VideoPrivacy } from './video-privacy.enum'
 
@@ -28,7 +28,6 @@ export interface Video {
   isLocal: boolean
   name: string
   serverHost: string
-  tags: string[]
   thumbnailPath: string
   previewPath: string
   embedPath: string
@@ -43,6 +42,8 @@ export interface VideoDetails extends Video {
   privacyLabel: string
   descriptionPath: string
   channel: VideoChannel
+  tags: string[]
   files: VideoFile[]
   account: Account
+  commentsEnabled: boolean
 }