We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 88bc6ff commit 8aa819bCopy full SHA for 8aa819b
packages/trigger-sdk/src/v3/auth.ts
@@ -150,6 +150,8 @@ function flattenScopes(permissions: PublicTokenPermissions): string[] {
150
}
151
} else if (typeof value === "string") {
152
flattenedPermissions.push(`${action}:${property}:${value}`);
153
+ } else if (typeof value === "boolean" && value) {
154
+ flattenedPermissions.push(`${action}:${property}`);
155
156
157
0 commit comments