Skip to content

Commit

Permalink
Fixes for missing migration props
Browse files Browse the repository at this point in the history
  • Loading branch information
turbo124 committed Nov 30, 2023
1 parent c963edc commit 5ef8ece
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion app/Traits/GenerateMigrationResources.php
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,8 @@ public function getCompanySettings()
'schedule_reminder1' => $this->buildReminderString($this->account->direction_reminder1, $this->account->field_reminder1),
'schedule_reminder2' => $this->buildReminderString($this->account->direction_reminder2, $this->account->field_reminder2),
'schedule_reminder3' => $this->buildReminderString($this->account->direction_reminder3, $this->account->field_reminder3),
'endless_reminder_frequency_id' => $this->account->account_email_settings->reset_counter_frequency_id ? $this->transformFrequencyId($this->account->account_email_settings->reset_counter_frequency_id) : 0,
'endless_reminder_frequency_id' => $this->account->account_email_settings->frequency_id_reminder4 ? $this->transformFrequencyId($this->account->account_email_settings->frequency_id_reminder4) : 0,
'reset_counter_frequency_id' => $this->account->account_email_settings->reset_counter_frequency_id ? $this->transformFrequencyId($this->account->account_email_settings->reset_counter_frequency_id) : 0,
'email_signature' => $this->account->email_footer ?: '',
'email_style' => $this->getEmailStyle($this->account->email_design_id),
'custom_message_dashboard' => $this->account->customMessage('dashboard'),
Expand Down

0 comments on commit 5ef8ece

Please sign in to comment.