Add /api/news route

This commit is contained in:
Nabeel Shahzad
2018-04-11 20:01:41 -05:00
parent 8d2fd22e3e
commit 395642f69c
5 changed files with 95 additions and 0 deletions

View File

@@ -7,6 +7,7 @@ Route::group([], function () {
Route::get('acars', 'AcarsController@index');
Route::get('pireps/{pirep_id}/acars/geojson', 'PirepController@acars_geojson');
Route::get('news', 'NewsController@index');
Route::get('status', 'StatusController@status');
Route::get('version', 'StatusController@status');
});