DONE: layout letter with letterhead and footer, notification for newly...
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
<?php
|
||||
|
||||
namespace Modules\MembershipApplication\Enums;
|
||||
|
||||
enum ApplicationStatus: string
|
||||
{
|
||||
case Submitted = 'SUBMITTED';
|
||||
case PendingBoard = 'PENDING_BOARD';
|
||||
case ManagementRejected = 'MANAGEMENT_REJECTED';
|
||||
case PendingNotification = 'PENDING_NOTIFICATION';
|
||||
case Completed = 'COMPLETED';
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
<?php
|
||||
|
||||
namespace Modules\MembershipApplication\Enums;
|
||||
|
||||
enum BoardDecision: string
|
||||
{
|
||||
case Pass = 'PASS';
|
||||
case Fail = 'FAIL';
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
<?php
|
||||
|
||||
namespace Modules\MembershipApplication\Enums;
|
||||
|
||||
enum BoardResult: string
|
||||
{
|
||||
case Pass = 'PASS';
|
||||
case Fail = 'FAIL';
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
<?php
|
||||
|
||||
namespace Modules\MembershipApplication\Enums;
|
||||
|
||||
enum ManagementDecision: string
|
||||
{
|
||||
case Approved = 'APPROVED';
|
||||
case Rejected = 'REJECTED';
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
<?php
|
||||
|
||||
namespace Modules\MembershipApplication\Enums;
|
||||
|
||||
enum ReferenceType: string
|
||||
{
|
||||
case Proposer = 'PROPOSER';
|
||||
case Supporter = 'SUPPORTER';
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
<?php
|
||||
|
||||
namespace Modules\MembershipApplication\Enums;
|
||||
|
||||
enum ReviewStage: string
|
||||
{
|
||||
case Management = 'MANAGEMENT';
|
||||
case Board = 'BOARD';
|
||||
}
|
||||
Reference in New Issue
Block a user