PeerTube/server/controllers/api/config.ts

23 lines
433 B
TypeScript
Raw Normal View History

2017-06-05 21:53:49 +02:00
import * as express from 'express'
2017-05-15 22:22:03 +02:00
2017-05-22 20:58:25 +02:00
import { CONFIG } from '../../initializers'
2017-05-15 22:22:03 +02:00
const configRouter = express.Router()
configRouter.get('/', getConfig)
// Get the client credentials for the PeerTube front end
function getConfig (req, res, next) {
res.json({
signup: {
enabled: CONFIG.SIGNUP.ENABLED
}
})
}
// ---------------------------------------------------------------------------
export {
configRouter
}