From c2063e6c3dceef070b33938a67640729e5522915 Mon Sep 17 00:00:00 2001 From: Philipinho <16838612+Philipinho@users.noreply.github.com> Date: Sat, 23 May 2026 02:08:07 +0100 Subject: [PATCH] fix(env): match INTEGRATION_{TYPE}_* env-var convention for Slack signing secret --- apps/server/src/integrations/environment/environment.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/server/src/integrations/environment/environment.service.ts b/apps/server/src/integrations/environment/environment.service.ts index 1df273896..de1747bd0 100644 --- a/apps/server/src/integrations/environment/environment.service.ts +++ b/apps/server/src/integrations/environment/environment.service.ts @@ -362,6 +362,6 @@ export class EnvironmentService { } getSlackSigningSecret(): string | undefined { - return this.configService.get('SLACK_SIGNING_SECRET'); + return this.configService.get('INTEGRATION_SLACK_SIGNING_SECRET'); } }