diff options
Diffstat (limited to 'server/helpers/custom-validators/misc.ts')
-rw-r--r-- | server/helpers/custom-validators/misc.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/server/helpers/custom-validators/misc.ts b/server/helpers/custom-validators/misc.ts index a093e3e1b..b6f0ebe6f 100644 --- a/server/helpers/custom-validators/misc.ts +++ b/server/helpers/custom-validators/misc.ts | |||
@@ -9,8 +9,8 @@ function isArray (value: any) { | |||
9 | return Array.isArray(value) | 9 | return Array.isArray(value) |
10 | } | 10 | } |
11 | 11 | ||
12 | function isIntArray (value: any) { | 12 | function isNotEmptyIntArray (value: any) { |
13 | return Array.isArray(value) && value.every(v => validator.isInt('' + v)) | 13 | return Array.isArray(value) && value.every(v => validator.isInt('' + v)) && value.length !== 0 |
14 | } | 14 | } |
15 | 15 | ||
16 | function isDateValid (value: string) { | 16 | function isDateValid (value: string) { |
@@ -82,7 +82,7 @@ function isFileValid ( | |||
82 | 82 | ||
83 | export { | 83 | export { |
84 | exists, | 84 | exists, |
85 | isIntArray, | 85 | isNotEmptyIntArray, |
86 | isArray, | 86 | isArray, |
87 | isIdValid, | 87 | isIdValid, |
88 | isUUIDValid, | 88 | isUUIDValid, |