Merge branch 'dev-experience' of github.com:Budibase/budibase into dev-experience
This commit is contained in:
commit
3f51c07177
|
@ -14,7 +14,7 @@ describe("/component", () => {
|
|||
describe("fetch definitions", () => {
|
||||
it("should be able to fetch definitions", async () => {
|
||||
const res = await request
|
||||
.get(`/${config.getAppId()}/components/definitions`)
|
||||
.get(`/api/${config.getAppId()}/components/definitions`)
|
||||
.set(config.defaultHeaders())
|
||||
.expect("Content-Type", /json/)
|
||||
.expect(200)
|
||||
|
@ -25,7 +25,7 @@ describe("/component", () => {
|
|||
await checkBuilderEndpoint({
|
||||
config,
|
||||
method: "GET",
|
||||
url: `/${config.getAppId()}/components/definitions`,
|
||||
url: `/api/${config.getAppId()}/components/definitions`,
|
||||
})
|
||||
})
|
||||
})
|
||||
|
|
|
@ -42,10 +42,6 @@ module.exports = (permType, permLevel = null) => async (ctx, next) => {
|
|||
const isAdmin = ADMIN_ROLES.includes(role._id)
|
||||
const isAuthed = ctx.auth.authenticated
|
||||
|
||||
if (permType === PermissionTypes.BUILDER) {
|
||||
return next()
|
||||
}
|
||||
|
||||
const { basePermissions, permissions } = await getUserPermissions(
|
||||
ctx.appId,
|
||||
role._id
|
||||
|
|
Loading…
Reference in New Issue