1
0
Fork 0
mirror of synced 2024-07-05 06:20:55 +12:00

Merge pull request #2555 from Budibase/fix/multi-tenancy-prod

Multi-tenancy production fix
This commit is contained in:
Michael Drury 2021-09-06 14:05:57 +01:00 committed by GitHub
commit d568b20742

View file

@ -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