From c8eecb508ce591ae14619b6ee5f8d725bb0af337 Mon Sep 17 00:00:00 2001 From: Herpaderp Aldent Date: Thu, 13 Sep 2018 21:44:53 +0200 Subject: [PATCH] Version 1.3.2 (#26) Some bug fixes: * adapting the /affiliation url because adblockers are acting up. * bump version. --- CHANGELOG.md | 5 +++++ src/Http/routes.php | 6 +++--- src/config/seatgroups.config.php | 2 +- 3 files changed, 9 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6a07aec..5122acb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +# Version 1.3.2 +Some bug fixes: +* adapting the /affiliation url because adblockers are acting up. +* bump version. + # Version 1.3.1 Smaller bugfixes * removed typo in `isQualified()` method which was blocking all_corporations affiliation. diff --git a/src/Http/routes.php b/src/Http/routes.php index 89dcc37..a04e459 100644 --- a/src/Http/routes.php +++ b/src/Http/routes.php @@ -77,7 +77,7 @@ 'as' => 'affiliation.get.corporation.list', 'uses' => 'SeatGroupCorporationController@getCorporationList' ]); - Route::post('/affiliations', [ + Route::post('/affiliations/current', [ 'as' => 'affiliation.get.current.affiliations', 'uses' => 'SeatGroupAffiliationController@getCurrentAffiliations' ]); @@ -94,8 +94,8 @@ 'uses' => 'SeatGroupCorporationTitleController@removeCorporationTitleAffiliation' ]); Route::post('/affiliation/add/corporation', [ - 'as' => 'affiliation.add.corp.affiliation', - 'uses' => 'SeatGroupCorporationController@addCorporationAffiliation' + 'as' => 'affiliation.add.corp.affiliation', + 'uses' => 'SeatGroupCorporationController@addCorporationAffiliation' ]); diff --git a/src/config/seatgroups.config.php b/src/config/seatgroups.config.php index be6f840..e52d339 100644 --- a/src/config/seatgroups.config.php +++ b/src/config/seatgroups.config.php @@ -6,7 +6,7 @@ * Time: 10:24 */ return [ - 'version' => '1.3.0' + 'version' => '1.3.2' ]; //TODO: Update Version \ No newline at end of file