]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/commitdiff
Cleanup shared models imports
authorChocobozzz <me@florianbigard.com>
Wed, 28 Jul 2021 08:46:32 +0000 (10:46 +0200)
committerChocobozzz <me@florianbigard.com>
Wed, 28 Jul 2021 08:46:32 +0000 (10:46 +0200)
shared/models/plugins/server/managers/plugin-playlist-privacy-manager.model.ts
shared/models/plugins/server/managers/plugin-video-category-manager.model.ts
shared/models/plugins/server/managers/plugin-video-language-manager.model.ts
shared/models/plugins/server/managers/plugin-video-licence-manager.model.ts
shared/models/plugins/server/managers/plugin-video-privacy-manager.model.ts
shared/models/videos/comment/video-comment.model.ts

index 5b3b37752b28c6df98945ace15ea7878f1f448e9..35247c1e371f43895ae74f2cb28fb599c31ccf22 100644 (file)
@@ -1,5 +1,5 @@
 import { VideoPlaylistPrivacy } from '../../../videos/playlist/video-playlist-privacy.model'
-import { ConstantManager } from '@shared/models/plugins/server/plugin-constant-manager.model'
+import { ConstantManager } from '../plugin-constant-manager.model'
 
 export interface PluginPlaylistPrivacyManager extends ConstantManager<VideoPlaylistPrivacy> {
   /**
index 069ad14764a5e2fb18d773f42f293a0501e7e519..cf3d828fe38d542eb5972b6a7adb677bec849e20 100644 (file)
@@ -1,4 +1,4 @@
-import { ConstantManager } from '@shared/models/plugins/server/plugin-constant-manager.model'
+import { ConstantManager } from '../plugin-constant-manager.model'
 
 export interface PluginVideoCategoryManager extends ConstantManager<number> {
   /**
index 969c6c670f2a7e186cdddd0c5aaf51fa7fe6d5a3..69fc8e5034d03e7990240ebbb83f3779ff5fd41c 100644 (file)
@@ -1,4 +1,4 @@
-import { ConstantManager } from '@shared/models/plugins/server/plugin-constant-manager.model'
+import { ConstantManager } from '../plugin-constant-manager.model'
 
 export interface PluginVideoLanguageManager extends ConstantManager<string> {
   /**
index 900a49661e4cbd010f808865d24daf35c048286b..6efeadd7d29b3b0388637bbdc25129a5c7cdbb55 100644 (file)
@@ -1,4 +1,4 @@
-import { ConstantManager } from '@shared/models/plugins/server/plugin-constant-manager.model'
+import { ConstantManager } from '../plugin-constant-manager.model'
 
 export interface PluginVideoLicenceManager extends ConstantManager<number> {
   /**
index e26e48a53becf08a240494c3aa8e5e12e628ff96..a237037db279964f931a6dc5f40d065e50d014c7 100644 (file)
@@ -1,5 +1,5 @@
 import { VideoPrivacy } from '../../../videos/video-privacy.enum'
-import { ConstantManager } from '@shared/models/plugins/server/plugin-constant-manager.model'
+import { ConstantManager } from '../plugin-constant-manager.model'
 
 export interface PluginVideoPrivacyManager extends ConstantManager<VideoPrivacy> {
   /**
index 5a96f9d4a911acdc68d11229fe032c9abb1eeb3f..737cfe098480737a09372cc26836f3d178851ad9 100644 (file)
@@ -1,4 +1,4 @@
-import { ResultList } from '@shared/models/common'
+import { ResultList } from '../../common'
 import { Account } from '../../actors'
 
 export interface VideoComment {