File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed
app/Http/Requests/Api/Application/Allocations Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ value when showing an error state.
1414error encountered during creation or update.
1515* Two-factor tokens generated when a company name has a space in it will now properly be parsed on iOS authenticator devices.
1616* Fixed 500 error when trying to request subuser's from a server in the application API.
17+ * Creating a node allocation via the API no longer requires an alias field be passed through in the request.
1718
1819### Added
1920* Server listing view now displays the total used disk space for each server.
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ public function validated()
4040 return [
4141 'allocation_ip ' => $ data ['ip ' ],
4242 'allocation_ports ' => $ data ['ports ' ],
43- 'allocation_alias ' => $ data ['alias ' ],
43+ 'allocation_alias ' => $ data ['alias ' ] ?? null ,
4444 ];
4545 }
4646}
You can’t perform that action at this time.
0 commit comments