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'); + } }