-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improve user experience for table assignment and status notification (#3
) * prevent unnecessary updates to status timestamps * notify admin user about sent status notifications * auto update status on table type change in list view * prevent calling update on accepted tables and delete in general * prevent shares/assistants from accepting a table * prevent cancellation once table has been accepted * prevent modification of shares after registration period * change styling of buttons on table confirmation * fix issue with automatic status change * update child applications to TableAccepted on parent accepting their offered table * update table number for assistants with parent * only send status notifications to Dealers * show status information on Dasboard * show reg status on dashboard * rework status flow during acceptance phase dropping is_notified add notifications for shares improve status messages in dasboard * allow sorting and searching applications by dealership * disable placeholder selection to avoid error in applications list
- Loading branch information
Showing
27 changed files
with
727 additions
and
182 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<?php | ||
|
||
namespace App\Enums; | ||
|
||
enum StatusNotificationResult: string | ||
{ | ||
case Accepted = 'accepted'; | ||
case OnHold = 'on-hold'; | ||
case WaitingList = 'waiting list'; | ||
case SharesInvalid = 'shares invalid'; | ||
case StatusNotApplicable = 'status not applicable'; | ||
case NotDealer = 'not dealer'; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.