Fixing an issue in prod where the /builder endpoint wasn't being allowed past without tenancy.
This commit is contained in:
parent
8c0977852c
commit
400cc05d21
|
@ -15,6 +15,20 @@ const NO_TENANCY_ENDPOINTS = [
|
||||||
route: "/api/analytics",
|
route: "/api/analytics",
|
||||||
method: "GET",
|
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
|
router
|
||||||
|
|
Loading…
Reference in New Issue