]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - server/middlewares/user-right.ts
Error if importing a torrent with multiple files
[github/Chocobozzz/PeerTube.git] / server / middlewares / user-right.ts
index aaf0b323a035e8c12a055af23bfa8812f229f5eb..45dda4781211f9a5a85221bd47df989647fcda90 100644 (file)
@@ -1,6 +1,7 @@
 import * as express from 'express'
 import { UserRight } from '../../shared'
 import { logger } from '../helpers/logger'
+import { HttpStatusCode } from '../../shared/core-utils/miscs/http-error-codes'
 
 function ensureUserHasRight (userRight: UserRight) {
   return function (req: express.Request, res: express.Response, next: express.NextFunction) {
@@ -9,7 +10,8 @@ function ensureUserHasRight (userRight: UserRight) {
       const message = `User ${user.username} does not have right ${userRight} to access to ${req.path}.`
       logger.info(message)
 
-      return res.status(403).json({ error: message })
+      return res.status(HttpStatusCode.FORBIDDEN_403)
+                .json({ error: message })
     }
 
     return next()