audiobookshelf/server/routers/PublicRouter.js

17 lines
464 B
JavaScript
Raw Normal View History

const express = require('express')
const ShareController = require('../controllers/ShareController')
class PublicRouter {
constructor() {
this.router = express()
this.router.disable('x-powered-by')
this.init()
}
init() {
this.router.get('/share/:slug', ShareController.getMediaItemShareBySlug.bind(this))
this.router.get('/share/:slug/file/:fileid', ShareController.getMediaItemShareFile.bind(this))
}
}
module.exports = PublicRouter