Skip to content
This repository has been archived by the owner on Jul 12, 2022. It is now read-only.

Commit

Permalink
Version 1.3.2 (#26)
Browse files Browse the repository at this point in the history
Some bug fixes:

* adapting the /affiliation url because adblockers are acting up.
* bump version.
  • Loading branch information
herpaderpaldent authored Sep 13, 2018
1 parent e02c5ff commit c8eecb5
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
6 changes: 3 additions & 3 deletions src/Http/routes.php
Original file line number Diff line number Diff line change
Expand Up @@ -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'
]);
Expand All @@ -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'
]);


Expand Down
2 changes: 1 addition & 1 deletion src/config/seatgroups.config.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* Time: 10:24
*/
return [
'version' => '1.3.0'
'version' => '1.3.2'
];

//TODO: Update Version

0 comments on commit c8eecb5

Please sign in to comment.