aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/helpers/custom-validators/videos.ts
diff options
context:
space:
mode:
Diffstat (limited to 'server/helpers/custom-validators/videos.ts')
-rw-r--r--server/helpers/custom-validators/videos.ts5
1 files changed, 5 insertions, 0 deletions
diff --git a/server/helpers/custom-validators/videos.ts b/server/helpers/custom-validators/videos.ts
index 11b085b78..5b9102275 100644
--- a/server/helpers/custom-validators/videos.ts
+++ b/server/helpers/custom-validators/videos.ts
@@ -54,6 +54,10 @@ function isVideoNSFWValid (value: any) {
54 return typeof value === 'boolean' || (typeof value === 'string' && validator.isBoolean(value)) 54 return typeof value === 'boolean' || (typeof value === 'string' && validator.isBoolean(value))
55} 55}
56 56
57function isVideoTruncatedDescriptionValid (value: string) {
58 return exists(value) && validator.isLength(value, VIDEOS_CONSTRAINTS_FIELDS.TRUNCATED_DESCRIPTION)
59}
60
57function isVideoDescriptionValid (value: string) { 61function isVideoDescriptionValid (value: string) {
58 return exists(value) && validator.isLength(value, VIDEOS_CONSTRAINTS_FIELDS.DESCRIPTION) 62 return exists(value) && validator.isLength(value, VIDEOS_CONSTRAINTS_FIELDS.DESCRIPTION)
59} 63}
@@ -173,6 +177,7 @@ export {
173 isVideoLicenceValid, 177 isVideoLicenceValid,
174 isVideoLanguageValid, 178 isVideoLanguageValid,
175 isVideoNSFWValid, 179 isVideoNSFWValid,
180 isVideoTruncatedDescriptionValid,
176 isVideoDescriptionValid, 181 isVideoDescriptionValid,
177 isVideoDurationValid, 182 isVideoDurationValid,
178 isVideoFileInfoHashValid, 183 isVideoFileInfoHashValid,