diff options
author | Chocobozzz <florian.bigard@gmail.com> | 2017-03-10 11:32:39 +0100 |
---|---|---|
committer | Chocobozzz <florian.bigard@gmail.com> | 2017-03-10 11:32:39 +0100 |
commit | e22528aca6eb58c8f8005790ac6e76ed4f8ad706 (patch) | |
tree | 9669efb759249438e2b065171f19f817f7d48440 /server/controllers/api/config.js | |
parent | a2457e9de4a598ea34629bc40eb882ce03ec0ede (diff) | |
download | PeerTube-e22528aca6eb58c8f8005790ac6e76ed4f8ad706.tar.gz PeerTube-e22528aca6eb58c8f8005790ac6e76ed4f8ad706.tar.zst PeerTube-e22528aca6eb58c8f8005790ac6e76ed4f8ad706.zip |
Server: add config endpoint
Diffstat (limited to 'server/controllers/api/config.js')
-rw-r--r-- | server/controllers/api/config.js | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/server/controllers/api/config.js b/server/controllers/api/config.js new file mode 100644 index 000000000..8154b6ad0 --- /dev/null +++ b/server/controllers/api/config.js | |||
@@ -0,0 +1,22 @@ | |||
1 | 'use strict' | ||
2 | |||
3 | const express = require('express') | ||
4 | |||
5 | const constants = require('../../initializers/constants') | ||
6 | |||
7 | const router = express.Router() | ||
8 | |||
9 | router.get('/', getConfig) | ||
10 | |||
11 | // Get the client credentials for the PeerTube front end | ||
12 | function getConfig (req, res, next) { | ||
13 | res.json({ | ||
14 | signup: { | ||
15 | enabled: constants.CONFIG.SIGNUP.ENABLED | ||
16 | } | ||
17 | }) | ||
18 | } | ||
19 | |||
20 | // --------------------------------------------------------------------------- | ||
21 | |||
22 | module.exports = router | ||