Browse Source

Fixing an issue in prod where the /builder endpoint wasn't being allowed past without tenancy.

pull/4023/head
mike12345567 5 years ago
parent
commit
ae73efaabe
  1. 14
      packages/server/src/api/index.js

14
packages/server/src/api/index.js

@ -15,6 +15,20 @@ const NO_TENANCY_ENDPOINTS = [
route: "/api/analytics",
method: "GET",
},
{
route: "/builder",
method: "GET",
},
// when using this locally there can be pass through, need
// to allow all pass through endpoints to go without tenancy
{
route: "/api/global",
method: "ALL",
},
{
route: "/api/system",
method: "ALL",
},
]
router

Loading…
Cancel
Save