wrong link for groups button
This commit is contained in:
parent
f0d303ca19
commit
fbffe43c97
|
@ -72,7 +72,9 @@
|
|||
newStyles
|
||||
icon={isProPlan ? "UserGroup" : ""}
|
||||
cta={isProPlan}
|
||||
on:click={() => modal.show()}
|
||||
on:click={isProPlan
|
||||
? () => modal.show()
|
||||
: window.open("https://budibase.com/pricing/", "_blank")}
|
||||
>{isProPlan ? "Create user group" : "Upgrade Account"}</Button
|
||||
>
|
||||
{#if !isProPlan}
|
||||
|
|
|
@ -73,7 +73,6 @@ const checkAuthorizedResource = async (
|
|||
|
||||
export = (permType: any, permLevel: any = null, opts = { schema: false }) =>
|
||||
async (ctx: any, next: any) => {
|
||||
console.log(ctx)
|
||||
// webhooks don't need authentication, each webhook unique
|
||||
// also internal requests (between services) don't need authorized
|
||||
if (isWebhookEndpoint(ctx) || ctx.internal) {
|
||||
|
|
Loading…
Reference in New Issue