mirror of
https://github.com/standardebooks/web.git
synced 2025-07-12 17:42:29 -04:00
Continue fleshing out project management system
This commit is contained in:
parent
657ecc68d4
commit
051e286a6d
19 changed files with 420 additions and 108 deletions
10
lib/Enums/ProjectReminderType.php
Normal file
10
lib/Enums/ProjectReminderType.php
Normal file
|
@ -0,0 +1,10 @@
|
|||
<?
|
||||
namespace Enums;
|
||||
|
||||
enum ProjectReminderType: string{
|
||||
/** An email to nudge the producer on a stalled project. */
|
||||
case Stalled = 'stalled';
|
||||
|
||||
/** An email to notify the producer we are considering their project abandoned. */
|
||||
case Abandoned = 'abandoned';
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue