Fix too big line length

pull/1217/head
Lucas Declercq 2018-10-08 16:33:02 +02:00
parent 7f2cfe3a79
commit 8ea1597fdb
1 changed files with 9 additions and 1 deletions

View File

@ -27,7 +27,15 @@ export class VideoEdit implements VideoUpdate {
id?: number
scheduleUpdate?: VideoScheduleUpdate
constructor (video?: Video & { tags: string[], commentsEnabled: boolean, downloadEnabled: boolean, support: string, thumbnailUrl: string, previewUrl: string }) {
constructor (
video?: Video & {
tags: string[],
commentsEnabled: boolean,
downloadEnabled: boolean,
support: string,
thumbnailUrl: string,
previewUrl: string
}) {
if (video) {
this.id = video.id
this.uuid = video.uuid