We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5de6ee7 commit 20232acCopy full SHA for 20232ac
apps/api/src/app/support/support.controller.ts
@@ -37,10 +37,10 @@ export class SupportController {
37
const organization = await this.organizationRepository.findById(user.organizationId);
38
const organizationName = organization?.name ?? '';
39
40
- const secretKey = process.env.NOVU_SECRET_KEY;
+ const secretKey = process.env.NOVU_INTERNAL_SECRET_KEY;
41
42
if (!secretKey) {
43
- this.logger.warn('NOVU_SECRET_KEY is not set; skipping early-access-request-agents-internal-email trigger');
+ this.logger.warn('NOVU_INTERNAL_SECRET_KEY is not set; skipping early-access-request-agents-internal-email trigger');
44
45
return {
46
success: true,
0 commit comments