mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-10-04 02:09:37 +02:00
13 lines
260 B
TypeScript
13 lines
260 B
TypeScript
import * as express from 'express'
|
|
|
|
function docMiddleware (docUrl: string) {
|
|
return (req: express.Request, res: express.Response, next: express.NextFunction) => {
|
|
res.locals.docUrl = docUrl
|
|
|
|
if (next) return next()
|
|
}
|
|
}
|
|
|
|
export {
|
|
docMiddleware
|
|
}
|