Chocobozzz 1 month ago
parent
commit
4a35e6587a
1 changed files with 2 additions and 9 deletions
  1. 2 9
      server/core/middlewares/validators/videos/video-view.ts

+ 2 - 9
server/core/middlewares/validators/videos/video-view.ts

@@ -7,7 +7,7 @@ import { body, param } from 'express-validator'
 import { isIdValid, toIntOrNull } from '../../../helpers/custom-validators/misc.js'
 import { areValidationErrors, doesVideoExist, isValidVideoIdParam } from '../shared/index.js'
 
-const getVideoLocalViewerValidator = [
+export const getVideoLocalViewerValidator = [
   param('localViewerId')
     .custom(isIdValid),
 
@@ -28,7 +28,7 @@ const getVideoLocalViewerValidator = [
   }
 ]
 
-const videoViewValidator = [
+export const videoViewValidator = [
   isValidVideoIdParam('videoId'),
 
   body('currentTime')
@@ -54,10 +54,3 @@ const videoViewValidator = [
     return next()
   }
 ]
-
-// ---------------------------------------------------------------------------
-
-export {
-  getVideoLocalViewerValidator, videoViewValidator
-}
-