aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/helpers/custom-validators
diff options
context:
space:
mode:
Diffstat (limited to 'server/helpers/custom-validators')
-rw-r--r--server/helpers/custom-validators/pods.ts4
-rw-r--r--server/helpers/custom-validators/users.ts4
-rw-r--r--server/helpers/custom-validators/videos.ts4
3 files changed, 3 insertions, 9 deletions
diff --git a/server/helpers/custom-validators/pods.ts b/server/helpers/custom-validators/pods.ts
index e4c827feb..ee939ad04 100644
--- a/server/helpers/custom-validators/pods.ts
+++ b/server/helpers/custom-validators/pods.ts
@@ -1,6 +1,4 @@
1import expressValidator = require('express-validator') 1import * as validator from 'validator'
2// TODO: use .validator when express-validator typing will have validator field
3const validator = expressValidator['validator']
4 2
5import { isArray } from './misc' 3import { isArray } from './misc'
6 4
diff --git a/server/helpers/custom-validators/users.ts b/server/helpers/custom-validators/users.ts
index 8fd2dac4f..f303ab8db 100644
--- a/server/helpers/custom-validators/users.ts
+++ b/server/helpers/custom-validators/users.ts
@@ -1,7 +1,5 @@
1import { values } from 'lodash' 1import { values } from 'lodash'
2import expressValidator = require('express-validator') 2import * as validator from 'validator'
3// TODO: use .validator when express-validator typing will have validator field
4const validator = expressValidator['validator']
5 3
6import { CONSTRAINTS_FIELDS, USER_ROLES } from '../../initializers' 4import { CONSTRAINTS_FIELDS, USER_ROLES } from '../../initializers'
7const USERS_CONSTRAINTS_FIELDS = CONSTRAINTS_FIELDS.USERS 5const USERS_CONSTRAINTS_FIELDS = CONSTRAINTS_FIELDS.USERS
diff --git a/server/helpers/custom-validators/videos.ts b/server/helpers/custom-validators/videos.ts
index 2b2370be4..6389998e1 100644
--- a/server/helpers/custom-validators/videos.ts
+++ b/server/helpers/custom-validators/videos.ts
@@ -1,7 +1,5 @@
1import { values } from 'lodash' 1import { values } from 'lodash'
2import expressValidator = require('express-validator') 2import * as validator from 'validator'
3// TODO: use .validator when express-validator typing will have validator field
4const validator = expressValidator['validator']
5 3
6import { 4import {
7 CONSTRAINTS_FIELDS, 5 CONSTRAINTS_FIELDS,