From 0fecf427d349a416dad149ee5d0b5210b6a43005 Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Thu, 27 Aug 2020 09:58:27 +0200 Subject: Don't use @shared in models So other projects can use them --- shared/models/videos/video-file.model.ts | 5 +++-- shared/models/videos/video-streaming-playlist.model.ts | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) (limited to 'shared/models/videos') diff --git a/shared/models/videos/video-file.model.ts b/shared/models/videos/video-file.model.ts index cbef05ac0..e9839229d 100644 --- a/shared/models/videos/video-file.model.ts +++ b/shared/models/videos/video-file.model.ts @@ -1,5 +1,6 @@ - -import { VideoConstant, VideoFileMetadata, VideoResolution } from '@shared/models' +import { VideoConstant } from './video-constant.model' +import { VideoFileMetadata } from './video-file-metadata' +import { VideoResolution } from './video-resolution.enum' export interface VideoFile { magnetUri: string diff --git a/shared/models/videos/video-streaming-playlist.model.ts b/shared/models/videos/video-streaming-playlist.model.ts index 42fce4bdc..a07d911dc 100644 --- a/shared/models/videos/video-streaming-playlist.model.ts +++ b/shared/models/videos/video-streaming-playlist.model.ts @@ -1,5 +1,5 @@ import { VideoStreamingPlaylistType } from './video-streaming-playlist.type' -import { VideoFile } from '@shared/models/videos/video-file.model' +import { VideoFile } from './video-file.model' export class VideoStreamingPlaylist { id: number -- cgit v1.2.3