ClientLocal -> OAuthClientLocal
[oweals/peertube.git] / server / controllers / api / config.ts
1 import * as express from 'express'
2
3 import { CONFIG } from '../../initializers'
4 import { ServerConfig } from '../../../shared'
5
6 const configRouter = express.Router()
7
8 configRouter.get('/', getConfig)
9
10 // Get the client credentials for the PeerTube front end
11 function getConfig (req: express.Request, res: express.Response, next: express.NextFunction) {
12   const json: ServerConfig = {
13     signup: {
14       enabled: CONFIG.SIGNUP.ENABLED
15     }
16   }
17   res.json(json)
18 }
19
20 // ---------------------------------------------------------------------------
21
22 export {
23   configRouter
24 }