Skip to content

Commit

Permalink
fix(api-service): set check field as false by default (#7469)
Browse files Browse the repository at this point in the history
  • Loading branch information
jainpawan21 authored Jan 15, 2025
1 parent c31f2c0 commit 96e9261
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions apps/api/src/app/integrations/integrations.controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ export class IntegrationsController {
channel: body.channel,
credentials: body.credentials,
active: body.active ?? false,
check: body.check ?? true,
check: body.check ?? false,
conditions: body.conditions,
})
);
Expand Down Expand Up @@ -198,7 +198,7 @@ export class IntegrationsController {
credentials: body.credentials,
removeNovuBranding: body.removeNovuBranding,
active: body.active,
check: body.check ?? true,
check: body.check ?? false,
conditions: body.conditions,
})
);
Expand Down
4 changes: 2 additions & 2 deletions packages/providers/src/lib/email/ses/ses.provider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -183,8 +183,8 @@ export class SESEmailProvider extends BaseProvider implements IEmailProvider {
attachments: {},
bcc: [],
cc: [],
replyTo: '[email protected]',
senderName: 'Novu Support',
replyTo: this.config.from,
senderName: this.config.senderName,
});

return {
Expand Down

0 comments on commit 96e9261

Please sign in to comment.