From 886d6fda367e2da6f09d6d3ceac6f52f5089b0e2 Mon Sep 17 00:00:00 2001 From: Matt Aitken Date: Fri, 22 Sep 2023 09:51:24 -0700 Subject: [PATCH] Tweaked the Linear scopes --- .../app/services/externalApis/integrations/linear.ts | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/apps/webapp/app/services/externalApis/integrations/linear.ts b/apps/webapp/app/services/externalApis/integrations/linear.ts index 355d96883..bb1266b2b 100644 --- a/apps/webapp/app/services/externalApis/integrations/linear.ts +++ b/apps/webapp/app/services/externalApis/integrations/linear.ts @@ -65,6 +65,11 @@ export const linear: Integration = { pkce: false, }, scopes: [ + { + name: "read", + description: "Read access for the user's account. This scope must always be present.", + defaultChecked: true, + }, { name: "write", description: @@ -73,7 +78,7 @@ export const linear: Integration = { }, { - name: "issue:create", + name: "issues:create", description: "Grants access to create issues and attachments only.", annotations: [{ label: "Issues" }], },