From d8babc71f47fadbb8990f051228503bee4072ec0 Mon Sep 17 00:00:00 2001 From: marktech0813 <178346048+marktech0813@users.noreply.github.com> Date: Thu, 16 Jul 2026 15:53:15 +0000 Subject: [PATCH] Fix #208: do not cache installation status endpoint GET /repos/:owner/:repo/installation gates registration and must reflect webhook updates immediately. Opt out of CustomCacheInterceptor via @NoCache(), matching health and pulls file endpoints. --- packages/das/src/api/repos/repos.controller.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packages/das/src/api/repos/repos.controller.ts b/packages/das/src/api/repos/repos.controller.ts index 6f173ad..82ba8f0 100644 --- a/packages/das/src/api/repos/repos.controller.ts +++ b/packages/das/src/api/repos/repos.controller.ts @@ -1,4 +1,5 @@ import { Controller, Get, Param } from "@nestjs/common"; +import { NoCache } from "../../cache"; import { ApiOperation, ApiParam, ApiTags } from "@nestjs/swagger"; import { ReposService } from "./repos.service"; @@ -26,6 +27,7 @@ export class ReposController { } @Get(":owner/:repo/installation") + @NoCache() @ApiOperation({ summary: "GitHub App installation status for a repo", description: