1
0
Fork 0
mirror of synced 2024-06-28 11:00:55 +12:00

Fixing component definition test cases and fixing an issue found by authorized test case.

This commit is contained in:
mike12345567 2021-04-07 11:27:15 +01:00
parent 6d8f27ba4e
commit 62360b1025
2 changed files with 2 additions and 6 deletions

View file

@ -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`,
})
})
})

View file

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