1
0
Fork 0
peertube/server/controllers/api/config.ts

28 lines
608 B
TypeScript
Raw Normal View History

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