From 8260b1164e1a13e3a2d8e6faa35848f1174d2f76 Mon Sep 17 00:00:00 2001 From: Alan Daniel Date: Tue, 7 Apr 2026 19:22:34 -0400 Subject: [PATCH] Add missing GitHub OAuth scopes for full app functionality --- apps/dashboard/src/lib/auth.ts | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/apps/dashboard/src/lib/auth.ts b/apps/dashboard/src/lib/auth.ts index fdc9650..9783dd8 100644 --- a/apps/dashboard/src/lib/auth.ts +++ b/apps/dashboard/src/lib/auth.ts @@ -18,7 +18,16 @@ export function getAuth() { github: { clientId: env.GITHUB_CLIENT_ID, clientSecret: env.GITHUB_CLIENT_SECRET, - scope: ["read:user", "user:email", "repo"], + scope: [ + "read:user", + "user:email", + "repo", + "notifications", + "workflow", + "read:project", + "security_events", + "admin:repo_hook", + ], }, }, plugins: [tanstackStartCookies()],