From 2cedf9ea6c4e722aa566f283b0103837bd8d390d Mon Sep 17 00:00:00 2001 From: Philipinho <16838612+Philipinho@users.noreply.github.com> Date: Sat, 23 May 2026 01:50:46 +0100 Subject: [PATCH] feat(env): add SLACK_SIGNING_SECRET getter on EnvironmentService --- .../src/integrations/environment/environment.service.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/apps/server/src/integrations/environment/environment.service.ts b/apps/server/src/integrations/environment/environment.service.ts index 5667bf5a6..1df273896 100644 --- a/apps/server/src/integrations/environment/environment.service.ts +++ b/apps/server/src/integrations/environment/environment.service.ts @@ -360,4 +360,8 @@ export class EnvironmentService { .map((o) => o.trim()) .filter(Boolean); } + + getSlackSigningSecret(): string | undefined { + return this.configService.get('SLACK_SIGNING_SECRET'); + } }