Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions apps/api/src/app/support/support.controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@ export class SupportController {
const organization = await this.organizationRepository.findById(user.organizationId);
const organizationName = organization?.name ?? '';

const secretKey = process.env.NOVU_SECRET_KEY;
const secretKey = process.env.NOVU_INTERNAL_SECRET_KEY;

if (!secretKey) {
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');

return {
success: true,
Expand Down
Loading