mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-02-25 18:55:32 -06:00
14 lines
260 B
TypeScript
14 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
|
|
}
|