diff options
author | Chocobozzz <me@florianbigard.com> | 2018-08-28 18:29:29 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2018-08-28 18:29:48 +0200 |
commit | 8b60488020883c66d3831eacd030893ab184268f (patch) | |
tree | 5b1a98b1796cd2709f5497e2459fe94867befb6b /server/helpers/custom-validators/videos.ts | |
parent | 41a676db3989fe3eca91301ac5f5aea30d98654a (diff) | |
download | PeerTube-8b60488020883c66d3831eacd030893ab184268f.tar.gz PeerTube-8b60488020883c66d3831eacd030893ab184268f.tar.zst PeerTube-8b60488020883c66d3831eacd030893ab184268f.zip |
Refractor user quota SQL queries
Diffstat (limited to 'server/helpers/custom-validators/videos.ts')
-rw-r--r-- | server/helpers/custom-validators/videos.ts | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/server/helpers/custom-validators/videos.ts b/server/helpers/custom-validators/videos.ts index 5e6cfe217..4b1f6c069 100644 --- a/server/helpers/custom-validators/videos.ts +++ b/server/helpers/custom-validators/videos.ts | |||
@@ -6,7 +6,6 @@ import * as validator from 'validator' | |||
6 | import { UserRight, VideoPrivacy, VideoRateType } from '../../../shared' | 6 | import { UserRight, VideoPrivacy, VideoRateType } from '../../../shared' |
7 | import { | 7 | import { |
8 | CONSTRAINTS_FIELDS, | 8 | CONSTRAINTS_FIELDS, |
9 | VIDEO_ABUSE_STATES, | ||
10 | VIDEO_CATEGORIES, | 9 | VIDEO_CATEGORIES, |
11 | VIDEO_LICENCES, | 10 | VIDEO_LICENCES, |
12 | VIDEO_MIMETYPE_EXT, | 11 | VIDEO_MIMETYPE_EXT, |
@@ -19,10 +18,8 @@ import { exists, isArray, isFileValid } from './misc' | |||
19 | import { VideoChannelModel } from '../../models/video/video-channel' | 18 | import { VideoChannelModel } from '../../models/video/video-channel' |
20 | import { UserModel } from '../../models/account/user' | 19 | import { UserModel } from '../../models/account/user' |
21 | import * as magnetUtil from 'magnet-uri' | 20 | import * as magnetUtil from 'magnet-uri' |
22 | import { VideoAbuseModel } from '../../models/video/video-abuse' | ||
23 | 21 | ||
24 | const VIDEOS_CONSTRAINTS_FIELDS = CONSTRAINTS_FIELDS.VIDEOS | 22 | const VIDEOS_CONSTRAINTS_FIELDS = CONSTRAINTS_FIELDS.VIDEOS |
25 | const VIDEO_ABUSES_CONSTRAINTS_FIELDS = CONSTRAINTS_FIELDS.VIDEO_ABUSES | ||
26 | 23 | ||
27 | function isVideoCategoryValid (value: any) { | 24 | function isVideoCategoryValid (value: any) { |
28 | return value === null || VIDEO_CATEGORIES[ value ] !== undefined | 25 | return value === null || VIDEO_CATEGORIES[ value ] !== undefined |