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