fix(env): match INTEGRATION_{TYPE}_* env-var convention for Slack signing secret

This commit is contained in:
Philipinho
2026-05-23 02:08:07 +01:00
parent 0d58b88db8
commit c2063e6c3d
@@ -362,6 +362,6 @@ export class EnvironmentService {
}
getSlackSigningSecret(): string | undefined {
return this.configService.get<string>('SLACK_SIGNING_SECRET');
return this.configService.get<string>('INTEGRATION_SLACK_SIGNING_SECRET');
}
}