diff --git a/CHANGELOG.md b/CHANGELOG.md index e99691cc0..06f8230ca 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,7 @@ 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. +* Fixes bug where node creation API endpoint was not correctly requiring the `disk_overallocate` key. ### Changed * `allocation_limit` for servers now defaults to a null value, and is not required in PATCH/POST requests when adding diff --git a/app/Http/Requests/Api/Application/Nodes/StoreNodeRequest.php b/app/Http/Requests/Api/Application/Nodes/StoreNodeRequest.php index 0f39fd2f8..37dd32585 100644 --- a/app/Http/Requests/Api/Application/Nodes/StoreNodeRequest.php +++ b/app/Http/Requests/Api/Application/Nodes/StoreNodeRequest.php @@ -36,7 +36,7 @@ class StoreNodeRequest extends ApplicationApiRequest 'memory', 'memory_overallocate', 'disk', - 'disk_overallocation', + 'disk_overallocate', 'upload_size', 'daemonListen', 'daemonSFTP',