Add call to get user's PIREPs #192

This commit is contained in:
Nabeel Shahzad
2018-02-19 10:35:49 -06:00
parent 5c58dfe1ae
commit 3d9d17d9b9
4 changed files with 98 additions and 11 deletions

View File

@@ -6,8 +6,8 @@ namespace App\Models\Enums;
class PirepState extends EnumBase {
public const REJECTED = -1;
public const IN_PROGRESS = 0;
public const PENDING = 1;
public const IN_PROGRESS = 0; // flight is ongoing
public const PENDING = 1; // waiting admin approval
public const ACCEPTED = 2;
public const CANCELLED = 3;
public const DELETED = 4;