Cleanup shared models imports
This commit is contained in:
parent
fa47956ecf
commit
28be9d1d3e
|
@ -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> {
|
||||
/**
|
||||
|
|
|
@ -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> {
|
||||
/**
|
||||
|
|
|
@ -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> {
|
||||
/**
|
||||
|
|
|
@ -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> {
|
||||
/**
|
||||
|
|
|
@ -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> {
|
||||
/**
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
import { ResultList } from '@shared/models/common'
|
||||
import { ResultList } from '../../common'
|
||||
import { Account } from '../../actors'
|
||||
|
||||
export interface VideoComment {
|
||||
|
|
Loading…
Reference in New Issue