aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/middlewares/admin.ts
diff options
context:
space:
mode:
authorChocobozzz <florian.bigard@gmail.com>2017-06-10 22:15:25 +0200
committerChocobozzz <florian.bigard@gmail.com>2017-06-10 22:15:25 +0200
commit69818c9394366b954b6ba3bd697bd9d2b09f2a16 (patch)
treead199a18ec3c322460d6f9523fc383ee562554e0 /server/middlewares/admin.ts
parent4d4e5cd4dca78480ec7f40e747f424cd107376a4 (diff)
downloadPeerTube-69818c9394366b954b6ba3bd697bd9d2b09f2a16.tar.gz
PeerTube-69818c9394366b954b6ba3bd697bd9d2b09f2a16.tar.zst
PeerTube-69818c9394366b954b6ba3bd697bd9d2b09f2a16.zip
Type functions
Diffstat (limited to 'server/middlewares/admin.ts')
-rw-r--r--server/middlewares/admin.ts5
1 files changed, 4 insertions, 1 deletions
diff --git a/server/middlewares/admin.ts b/server/middlewares/admin.ts
index 28b6a9a12..812397352 100644
--- a/server/middlewares/admin.ts
+++ b/server/middlewares/admin.ts
@@ -1,6 +1,9 @@
1import 'express-validator'
2import * as express from 'express'
3
1import { logger } from '../helpers' 4import { logger } from '../helpers'
2 5
3function ensureIsAdmin (req, res, next) { 6function ensureIsAdmin (req: express.Request, res: express.Response, next: express.NextFunction) {
4 const user = res.locals.oauth.token.user 7 const user = res.locals.oauth.token.user
5 if (user.isAdmin() === false) { 8 if (user.isAdmin() === false) {
6 logger.info('A non admin user is trying to access to an admin content.') 9 logger.info('A non admin user is trying to access to an admin content.')