]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - server/middlewares/user-right.ts
Update credits
[github/Chocobozzz/PeerTube.git] / server / middlewares / user-right.ts
index 7cea7aa1e6c0e34eb2e812df4024956da44d7cc8..4da7b9802516d02c0ac028557e15878dc119bb8a 100644 (file)
@@ -1,12 +1,10 @@
 import * as express from 'express'
-import 'express-validator'
 import { UserRight } from '../../shared'
 import { logger } from '../helpers/logger'
-import { UserModel } from '../models/account/user'
 
 function ensureUserHasRight (userRight: UserRight) {
   return function (req: express.Request, res: express.Response, next: express.NextFunction) {
-    const user = res.locals.oauth.token.user as UserModel
+    const user = res.locals.oauth.token.user
     if (user.hasRight(userRight) === false) {
       const message = `User ${user.username} does not have right ${UserRight[userRight]} to access to ${req.path}.`
       logger.info(message)