Fix for Locations PATCH endpoint (#1499)

This commit is contained in:
Michael (Parker) Parker 2019-03-02 16:27:36 -05:00 committed by Dane Everitt
parent 807d075435
commit 62e68ec66f
2 changed files with 5 additions and 1 deletions

View file

@ -3,6 +3,10 @@ This file is a running track of new features and fixes to each version of the pa
This project follows [Semantic Versioning](http://semver.org) guidelines. This project follows [Semantic Versioning](http://semver.org) guidelines.
## v0.7.13 (Derelict Dermodactylus)
### Fixed
* Fixes a bug with the location update API endpoint throwing an error due to an unexected response value.
## v0.7.12 (Derelict Dermodactylus) ## v0.7.12 (Derelict Dermodactylus)
### Fixed ### Fixed
* Fixes an issue with the locations API endpoint referencing an invalid namespace. * Fixes an issue with the locations API endpoint referencing an invalid namespace.

View file

@ -30,6 +30,6 @@ class UpdateLocationRequest extends StoreLocationRequest
return collect(Location::getUpdateRulesForId($locationId))->only([ return collect(Location::getUpdateRulesForId($locationId))->only([
'short', 'short',
'long', 'long',
]); ])->toArray();
} }
} }