diff options
Diffstat (limited to 'client/src/app/shared')
-rw-r--r-- | client/src/app/shared/shared-main/video/video-edit.model.ts | 6 | ||||
-rw-r--r-- | client/src/app/shared/shared-video-live/live-video.service.ts | 4 |
2 files changed, 6 insertions, 4 deletions
diff --git a/client/src/app/shared/shared-main/video/video-edit.model.ts b/client/src/app/shared/shared-main/video/video-edit.model.ts index ea0456942..436598af6 100644 --- a/client/src/app/shared/shared-main/video/video-edit.model.ts +++ b/client/src/app/shared/shared-main/video/video-edit.model.ts | |||
@@ -20,11 +20,13 @@ export class VideoEdit implements VideoUpdate { | |||
20 | previewfile?: any | 20 | previewfile?: any |
21 | thumbnailUrl: string | 21 | thumbnailUrl: string |
22 | previewUrl: string | 22 | previewUrl: string |
23 | uuid?: string | ||
24 | id?: number | ||
25 | scheduleUpdate?: VideoScheduleUpdate | 23 | scheduleUpdate?: VideoScheduleUpdate |
26 | originallyPublishedAt?: Date | string | 24 | originallyPublishedAt?: Date | string |
27 | 25 | ||
26 | id?: number | ||
27 | uuid?: string | ||
28 | shortUUID?: string | ||
29 | |||
28 | pluginData?: any | 30 | pluginData?: any |
29 | 31 | ||
30 | constructor ( | 32 | constructor ( |
diff --git a/client/src/app/shared/shared-video-live/live-video.service.ts b/client/src/app/shared/shared-video-live/live-video.service.ts index b02442eae..0d166e91d 100644 --- a/client/src/app/shared/shared-video-live/live-video.service.ts +++ b/client/src/app/shared/shared-video-live/live-video.service.ts | |||
@@ -2,7 +2,7 @@ import { catchError } from 'rxjs/operators' | |||
2 | import { HttpClient } from '@angular/common/http' | 2 | import { HttpClient } from '@angular/common/http' |
3 | import { Injectable } from '@angular/core' | 3 | import { Injectable } from '@angular/core' |
4 | import { RestExtractor } from '@app/core' | 4 | import { RestExtractor } from '@app/core' |
5 | import { LiveVideo, LiveVideoCreate, LiveVideoUpdate } from '@shared/models' | 5 | import { LiveVideo, LiveVideoCreate, LiveVideoUpdate, VideoCreateResult } from '@shared/models' |
6 | import { environment } from '../../../environments/environment' | 6 | import { environment } from '../../../environments/environment' |
7 | 7 | ||
8 | @Injectable() | 8 | @Injectable() |
@@ -16,7 +16,7 @@ export class LiveVideoService { | |||
16 | 16 | ||
17 | goLive (video: LiveVideoCreate) { | 17 | goLive (video: LiveVideoCreate) { |
18 | return this.authHttp | 18 | return this.authHttp |
19 | .post<{ video: { id: number, uuid: string } }>(LiveVideoService.BASE_VIDEO_LIVE_URL, video) | 19 | .post<{ video: VideoCreateResult }>(LiveVideoService.BASE_VIDEO_LIVE_URL, video) |
20 | .pipe(catchError(err => this.restExtractor.handleError(err))) | 20 | .pipe(catchError(err => this.restExtractor.handleError(err))) |
21 | } | 21 | } |
22 | 22 | ||