1
0
Fork 0
mirror of synced 2024-06-30 03:50:37 +12:00

remove self host check from apps call

This commit is contained in:
Martin McKeaveney 2021-08-04 20:33:39 +01:00
parent 31c48c170d
commit 8dfec750b9

View file

@ -1,7 +1,6 @@
const Router = require("@koa/router")
const controller = require("../controllers/hosting")
const authorized = require("../../middleware/authorized")
const selfhost = require("../../middleware/selfhost")
const { BUILDER } = require("@budibase/auth/permissions")
const router = Router()
@ -9,6 +8,6 @@ const router = Router()
router
.get("/api/hosting/urls", authorized(BUILDER), controller.fetchUrls)
// this isn't risky, doesn't return anything about apps other than names and URLs
.get("/api/hosting/apps", selfhost, controller.getDeployedApps)
.get("/api/hosting/apps", controller.getDeployedApps)
module.exports = router