]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - server/controllers/api/config.ts
Share models between server and client
[github/Chocobozzz/PeerTube.git] / server / controllers / api / config.ts
index 8bdde61b38f08ab9276f957c15d062f51fba6329..3e9aa77a5c6aac1bb7432adcac866d2abbe41b2d 100644 (file)
@@ -1,18 +1,20 @@
-import express = require('express')
+import * as express from 'express'
 
 import { CONFIG } from '../../initializers'
+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({
+function getConfig (req: express.Request, res: express.Response, next: express.NextFunction) {
+  const json: ServerConfig = {
     signup: {
       enabled: CONFIG.SIGNUP.ENABLED
     }
-  })
+  }
+  res.json(json)
 }
 
 // ---------------------------------------------------------------------------