]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame_incremental - server/controllers/api/config.ts
Handle blacklist (#84)
[github/Chocobozzz/PeerTube.git] / server / controllers / api / config.ts
... / ...
CommitLineData
1import * as express from 'express'
2
3import { isSignupAllowed } from '../../helpers'
4import { ServerConfig } from '../../../shared'
5
6const configRouter = express.Router()
7
8configRouter.get('/', getConfig)
9
10// Get the client credentials for the PeerTube front end
11function getConfig (req: express.Request, res: express.Response, next: express.NextFunction) {
12
13 isSignupAllowed().then(allowed => {
14 const json: ServerConfig = {
15 signup: {
16 allowed
17 }
18 }
19 res.json(json)
20 })
21}
22
23// ---------------------------------------------------------------------------
24
25export {
26 configRouter
27}