Add a CANCELLED state for PIREPs

This commit is contained in:
Nabeel Shahzad
2018-01-03 09:49:32 -06:00
parent 2bcfe76289
commit 8744a8b17b
2 changed files with 6 additions and 3 deletions

View File

@@ -13,10 +13,11 @@ return [
'pireps' => [
'state' => [
'accepted' => 'Accepted',
'pending' => 'Pending',
'rejected' => 'Rejected',
'accepted' => 'Accepted',
'pending' => 'Pending',
'rejected' => 'Rejected',
'in_progress' => 'In Progress',
'cancelled' => 'Cancelled',
],
],
];