Skip to content

Commit 6a4b5e0

Browse files
committed
Fix broken external_id handling when creating servers
1 parent 411da94 commit 6a4b5e0

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@ This file is a running track of new features and fixes to each version of the pa
33

44
This project follows [Semantic Versioning](http://semver.org) guidelines.
55

6+
## v0.7.3 (Derelict Dermodactylus)
7+
### Fixed
8+
* Fixes server creation API endpoint not passing the provided `external_id` to the creation service.
9+
610
## v0.7.2 (Derelict Dermodactylus)
711
### Fixed
812
* Fixes an exception thrown when trying to access the `/nests/:id/eggs/:id` API endpoint.

app/Http/Requests/Api/Application/Servers/StoreServerRequest.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,7 @@ public function validated()
7676
$data = parent::validated();
7777

7878
return [
79+
'external_id' => array_get($data, 'external_id'),
7980
'name' => array_get($data, 'name'),
8081
'description' => array_get($data, 'description'),
8182
'owner_id' => array_get($data, 'user'),

0 commit comments

Comments
 (0)