Add link to download ACARS config from profile (#539)

* Add link to download ACARS config from profile

* Formatting
This commit is contained in:
Nabeel S
2020-02-07 13:29:43 -05:00
committed by GitHub
parent 94cfbd4748
commit dd9fbdb6f1
4 changed files with 50 additions and 6 deletions

View File

@@ -48,8 +48,9 @@ Route::group([
Route::get('pireps/fares', 'PirepController@fares');
Route::post('pireps/{id}/submit', 'PirepController@submit')->name('pireps.submit');
Route::get('profile/regen_apikey', 'ProfileController@regen_apikey')
->name('profile.regen_apikey');
Route::get('profile/acars', 'ProfileController@acars')->name('profile.acars');
Route::get('profile/regen_apikey', 'ProfileController@regen_apikey')->name('profile.regen_apikey');
Route::resource('profile', 'ProfileController');
});