Skip to content

Commit

Permalink
Merge pull request dbarzin#248 from dbarzin/dev
Browse files Browse the repository at this point in the history
fix empty message
  • Loading branch information
dbarzin authored Jan 21, 2025
2 parents 9f447f8 + 61bf706 commit a4ffbec
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion app/Http/Controllers/ConfigurationController.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,15 @@ public function index()
$expire_delay = config('deming.notification.expire-delay');
$reminder = config('deming.notification.reminder');

// set emply message
$message = null;

// Return
return view(
'config',
compact(
'mail_from', 'mail_subject', 'mail_content',
'frequency', 'expire_delay', 'reminder')
'frequency', 'expire_delay', 'reminder', 'message')
);
}

Expand Down

0 comments on commit a4ffbec

Please sign in to comment.