2017-06-05 14:53:49 -05:00
|
|
|
import * as express from 'express'
|
2017-05-15 15:22:03 -05:00
|
|
|
|
2017-05-22 13:58:25 -05:00
|
|
|
import { CONFIG } from '../../initializers'
|
2017-06-17 04:28:11 -05:00
|
|
|
import { ServerConfig } from '../../../shared'
|
2017-05-15 15:22:03 -05:00
|
|
|
|
|
|
|
const configRouter = express.Router()
|
|
|
|
|
|
|
|
configRouter.get('/', getConfig)
|
|
|
|
|
|
|
|
// Get the client credentials for the PeerTube front end
|
2017-06-10 15:15:25 -05:00
|
|
|
function getConfig (req: express.Request, res: express.Response, next: express.NextFunction) {
|
2017-06-17 04:28:11 -05:00
|
|
|
const json: ServerConfig = {
|
2017-05-15 15:22:03 -05:00
|
|
|
signup: {
|
|
|
|
enabled: CONFIG.SIGNUP.ENABLED
|
|
|
|
}
|
2017-06-17 04:28:11 -05:00
|
|
|
}
|
|
|
|
res.json(json)
|
2017-05-15 15:22:03 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
export {
|
|
|
|
configRouter
|
|
|
|
}
|