From b8ba51512c39cad149317b6c270eac8a306a1486 Mon Sep 17 00:00:00 2001 From: Daniel Hougaard <62331820+DanielHougaard@users.noreply.github.com> Date: Sun, 17 Mar 2024 18:51:19 +0100 Subject: [PATCH] Fix: Rebase errors --- backend/src/server/routes/v1/integration-auth-router.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/backend/src/server/routes/v1/integration-auth-router.ts b/backend/src/server/routes/v1/integration-auth-router.ts index 9aac4ec2b..004ca298d 100644 --- a/backend/src/server/routes/v1/integration-auth-router.ts +++ b/backend/src/server/routes/v1/integration-auth-router.ts @@ -371,6 +371,7 @@ export const registerIntegrationAuthRouter = async (server: FastifyZodProvider) actorId: req.permission.id, actor: req.permission.type, actorOrgId: req.permission.orgId, + actorAuthMethod: req.permission.authMethod, id: req.params.integrationAuthId }); if (!orgs) throw new Error("No organization found."); @@ -403,6 +404,7 @@ export const registerIntegrationAuthRouter = async (server: FastifyZodProvider) actor: req.permission.type, actorOrgId: req.permission.orgId, id: req.params.integrationAuthId, + actorAuthMethod: req.permission.authMethod, repoName: req.query.repoName, repoOwner: req.query.repoOwner });