add PIREP pre-file and ACARS updates; removing caching from ACARS/Pirep/User repositories; adjust PirepState enum values; add additional columns
This commit is contained in:
@@ -24,6 +24,13 @@ Route::group([], function ()
|
||||
Route::match(['get'], 'flights/{id}', 'FlightController@get');
|
||||
|
||||
Route::match(['get'], 'pirep/{id}', 'PirepController@get');
|
||||
Route::match(['post'], 'pirep/prefile', 'PirepController@prefile');
|
||||
|
||||
Route::match(['get'], 'pirep/{id}/acars', 'PirepController@acars_get');
|
||||
Route::match(['post'], 'pirep/{id}/acars', 'PirepController@acars_store');
|
||||
|
||||
Route::match(['get'], 'acars', 'AcarsController@index');
|
||||
Route::match(['get'], 'acars/geojson', 'AcarsController@geojson');
|
||||
|
||||
# This is the info of the user whose token is in use
|
||||
Route::match(['get'], 'user', 'UserController@index');
|
||||
|
||||
Reference in New Issue
Block a user