diff options
author | Chocobozzz <florian.bigard@gmail.com> | 2017-07-25 20:17:28 +0200 |
---|---|---|
committer | Chocobozzz <florian.bigard@gmail.com> | 2017-07-25 20:17:28 +0200 |
commit | 291e8d3eed88fe714fb74ad897ac2c67347a85ff (patch) | |
tree | 20b4f9b8500ab4d9651d2a067fcf2948a6bfc9a4 /server/controllers/api/config.ts | |
parent | 3d09cdbf90902894c841d0a5ddb35eb772c53b8b (diff) | |
download | PeerTube-291e8d3eed88fe714fb74ad897ac2c67347a85ff.tar.gz PeerTube-291e8d3eed88fe714fb74ad897ac2c67347a85ff.tar.zst PeerTube-291e8d3eed88fe714fb74ad897ac2c67347a85ff.zip |
Add ability to limit user registrations
Diffstat (limited to 'server/controllers/api/config.ts')
-rw-r--r-- | server/controllers/api/config.ts | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/server/controllers/api/config.ts b/server/controllers/api/config.ts index 3e9aa77a5..f02a2bc58 100644 --- a/server/controllers/api/config.ts +++ b/server/controllers/api/config.ts | |||
@@ -1,6 +1,6 @@ | |||
1 | import * as express from 'express' | 1 | import * as express from 'express' |
2 | 2 | ||
3 | import { CONFIG } from '../../initializers' | 3 | import { isSignupAllowed } from '../../helpers' |
4 | import { ServerConfig } from '../../../shared' | 4 | import { ServerConfig } from '../../../shared' |
5 | 5 | ||
6 | const configRouter = express.Router() | 6 | const configRouter = express.Router() |
@@ -9,12 +9,15 @@ configRouter.get('/', getConfig) | |||
9 | 9 | ||
10 | // Get the client credentials for the PeerTube front end | 10 | // Get the client credentials for the PeerTube front end |
11 | function getConfig (req: express.Request, res: express.Response, next: express.NextFunction) { | 11 | function getConfig (req: express.Request, res: express.Response, next: express.NextFunction) { |
12 | const json: ServerConfig = { | 12 | |
13 | signup: { | 13 | isSignupAllowed().then(allowed => { |
14 | enabled: CONFIG.SIGNUP.ENABLED | 14 | const json: ServerConfig = { |
15 | signup: { | ||
16 | allowed | ||
17 | } | ||
15 | } | 18 | } |
16 | } | 19 | res.json(json) |
17 | res.json(json) | 20 | }) |
18 | } | 21 | } |
19 | 22 | ||
20 | // --------------------------------------------------------------------------- | 23 | // --------------------------------------------------------------------------- |