Browse Source

Fixing issue with 403 on schema endpoint due to change in middleware.

pull/4023/head
mike12345567 5 years ago
parent
commit
9b77f4e518
  1. 2
      packages/server/src/middleware/authorized.js

2
packages/server/src/middleware/authorized.js

@ -13,7 +13,7 @@ const { AuthTypes } = require("../constants")
const ADMIN_ROLES = [BUILTIN_ROLE_IDS.ADMIN, BUILTIN_ROLE_IDS.BUILDER]
const LOCAL_PASS = new RegExp(["webhooks/trigger"].join("|"))
const LOCAL_PASS = new RegExp(["webhooks/trigger", "webhooks/schema"].join("|"))
function hasResource(ctx) {
return ctx.resourceId != null

Loading…
Cancel
Save