1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-10 21:22:58 +01:00

Endless reminder activity

This commit is contained in:
David Bomba 2020-11-09 16:00:15 +11:00
parent 2e8cb84570
commit be2f83cfea
2 changed files with 2 additions and 0 deletions

View File

@ -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',

View File

@ -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',
];