From be2f83cfeaf8f165a591b3e8cea899a020e2609d Mon Sep 17 00:00:00 2001 From: David Bomba Date: Mon, 9 Nov 2020 16:00:15 +1100 Subject: [PATCH] Endless reminder activity --- app/Models/Activity.php | 1 + resources/lang/en/texts.php | 1 + 2 files changed, 2 insertions(+) diff --git a/app/Models/Activity.php b/app/Models/Activity.php index 6ad61022787a..607dc86890fa 100644 --- a/app/Models/Activity.php +++ b/app/Models/Activity.php @@ -83,6 +83,7 @@ class Activity extends StaticModel const INVOICE_REMINDER1_SENT = 63; const INVOICE_REMINDER2_SENT = 64; const INVOICE_REMINDER3_SENT = 65; + const INVOICE_REMINDER_ENDLESS_SENT = 66; protected $casts = [ 'is_system' => 'boolean', diff --git a/resources/lang/en/texts.php b/resources/lang/en/texts.php index 5e0815af6611..0636c6169370 100644 --- a/resources/lang/en/texts.php +++ b/resources/lang/en/texts.php @@ -3301,5 +3301,6 @@ return [ 'activity_63' => ':user emailed reminder 1 for invoice :invoice to :contact', 'activity_64' => ':user emailed reminder 2 for invoice :invoice to :contact', 'activity_65' => ':user emailed reminder 3 for invoice :invoice to :contact', + 'activity_66' => ':user emailed reminder endless for invoice :invoice to :contact', ];