-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
PPF-57 Sent reminder email #1377
Conversation
…factor command into service
…bliq-platform into PPF-57/sent-reminder-email
Also renamed the new database field to reminder_email_sent |
Feedback has been processed |
app/Console/Commands/SendIntegrationActivationReminderEmailCommand.php
Outdated
Show resolved
Hide resolved
app/Console/Commands/SendIntegrationActivationReminderEmailCommand.php
Outdated
Show resolved
Hide resolved
I wonder if the requirements change after this is implemented: https://jira.publiq.be/browse/PPF-564 |
app/Console/Commands/SendIntegrationActivationReminderEmailCommand.php
Outdated
Show resolved
Hide resolved
app/Domain/Integrations/Repositories/EloquentIntegrationRepository.php
Outdated
Show resolved
Hide resolved
@@ -53,7 +55,7 @@ public function __construct( | |||
public readonly string $description, | |||
public readonly UuidInterface $subscriptionId, | |||
public readonly IntegrationStatus $status, | |||
public readonly IntegrationPartnerStatus $partnerStatus | |||
public readonly IntegrationPartnerStatus $partnerStatus, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
public readonly IntegrationPartnerStatus $partnerStatus, | |
public readonly IntegrationPartnerStatus $partnerStatus |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I actually choose on purpose to leave these trailing comma's in.
The idea is that if we ever add a new option you would have not to change anything on the previous line, meaning that in a PR that line would not show up making the change more clear.
Happy to change it if it is not in line with the current coding standards, but it does have a purpose.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We have enforced this rule with trailing commas on arrays but not on methods. If we want to enforce it, we could add a rule for this.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Happy to create a rule for it later. Is it oké if I let it be for now?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sure
Co-authored-by: Luc Wollants <[email protected]>
PPF-53 Added whitelist for sandbox mode
…to-seperate-class PPF-53 Move template config to seperate class
PPF-53 Added activation requested and integration deleted mail
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for all the refactors. We have a very readable and consistent implementation now for mails, which follows the same flow as for other external tools like Insightly and Keycloak.
Added
Ticket: https://jira.uitdatabank.be/browse/PPF-57