diff --git a/packages/server/src/api/routes/hosting.js b/packages/server/src/api/routes/hosting.js index 0ebb4bb0e4..29e229f843 100644 --- a/packages/server/src/api/routes/hosting.js +++ b/packages/server/src/api/routes/hosting.js @@ -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