feat(env): add SLACK_SIGNING_SECRET getter on EnvironmentService

This commit is contained in:
Philipinho
2026-05-23 01:50:46 +01:00
parent d1b46e383a
commit 2cedf9ea6c
@@ -360,4 +360,8 @@ export class EnvironmentService {
.map((o) => o.trim())
.filter(Boolean);
}
getSlackSigningSecret(): string | undefined {
return this.configService.get<string>('SLACK_SIGNING_SECRET');
}
}