]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - server/controllers/api/config.ts
urls: makefriends/quitfriends -> make-friends/quit-friends
[github/Chocobozzz/PeerTube.git] / server / controllers / api / config.ts
index 8bdde61b38f08ab9276f957c15d062f51fba6329..f02a2bc58efb2c71a677d2fb07fc1a238f98792e 100644 (file)
@@ -1,17 +1,22 @@
-import express = require('express')
+import * as express from 'express'
 
-import { CONFIG } from '../../initializers'
+import { isSignupAllowed } from '../../helpers'
+import { ServerConfig } from '../../../shared'
 
 const configRouter = express.Router()
 
 configRouter.get('/', getConfig)
 
 // Get the client credentials for the PeerTube front end
-function getConfig (req, res, next) {
-  res.json({
-    signup: {
-      enabled: CONFIG.SIGNUP.ENABLED
+function getConfig (req: express.Request, res: express.Response, next: express.NextFunction) {
+
+  isSignupAllowed().then(allowed => {
+    const json: ServerConfig = {
+      signup: {
+        allowed
+      }
     }
+    res.json(json)
   })
 }