aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/middlewares/secure.ts
diff options
context:
space:
mode:
Diffstat (limited to 'server/middlewares/secure.ts')
-rw-r--r--server/middlewares/secure.ts5
1 files changed, 4 insertions, 1 deletions
diff --git a/server/middlewares/secure.ts b/server/middlewares/secure.ts
index bd7cfa918..fbfd08c7b 100644
--- a/server/middlewares/secure.ts
+++ b/server/middlewares/secure.ts
@@ -1,10 +1,13 @@
1import 'express-validator'
2import * as express from 'express'
3
1import { database as db } from '../initializers' 4import { database as db } from '../initializers'
2import { 5import {
3 logger, 6 logger,
4 checkSignature as peertubeCryptoCheckSignature 7 checkSignature as peertubeCryptoCheckSignature
5} from '../helpers' 8} from '../helpers'
6 9
7function checkSignature (req, res, next) { 10function checkSignature (req: express.Request, res: express.Response, next: express.NextFunction) {
8 const host = req.body.signature.host 11 const host = req.body.signature.host
9 db.Pod.loadByHost(host, function (err, pod) { 12 db.Pod.loadByHost(host, function (err, pod) {
10 if (err) { 13 if (err) {