diff options
Diffstat (limited to 'server/initializers/constants.ts')
-rw-r--r-- | server/initializers/constants.ts | 14 |
1 files changed, 4 insertions, 10 deletions
diff --git a/server/initializers/constants.ts b/server/initializers/constants.ts index 7be7a5f95..f539eb2ee 100644 --- a/server/initializers/constants.ts +++ b/server/initializers/constants.ts | |||
@@ -1,16 +1,10 @@ | |||
1 | import * as config from 'config' | 1 | import * as config from 'config' |
2 | import { join } from 'path' | 2 | import { join } from 'path' |
3 | 3 | import { JobCategory, JobState, VideoRateType } from '../../shared/models' | |
4 | import { FollowState } from '../../shared/models/accounts' | ||
5 | import { VideoPrivacy } from '../../shared/models/videos' | ||
4 | // Do not use barrels, remain constants as independent as possible | 6 | // Do not use barrels, remain constants as independent as possible |
5 | import { root, isTestInstance } from '../helpers/core-utils' | 7 | import { isTestInstance, root } from '../helpers/core-utils' |
6 | |||
7 | import { | ||
8 | VideoRateType, | ||
9 | JobState, | ||
10 | JobCategory | ||
11 | } from '../../shared/models' | ||
12 | import { VideoPrivacy } from '../../shared/models/videos/video-privacy.enum' | ||
13 | import { FollowState } from '../../shared/models/accounts/follow.model' | ||
14 | 8 | ||
15 | // --------------------------------------------------------------------------- | 9 | // --------------------------------------------------------------------------- |
16 | 10 | ||