Fix bug when trying to add new subuser.
This commit is contained in:
parent
9af06b4b59
commit
3240601d03
2 changed files with 2 additions and 1 deletions
|
@ -7,6 +7,7 @@ This project follows [Semantic Versioning](http://semver.org) guidelines.
|
|||
### Fixed
|
||||
* `[pre.2]` — Fixes bug where servers could not be manually deployed to nodes due to a broken SQL call.
|
||||
* `[pre.2]` — Fixes inability to edit a server due to owner_id issues.
|
||||
* `[pre.2]` — Fixes bug when trying to add new subusers.
|
||||
|
||||
### Changed
|
||||
* `[pre.2]` — File Manager now displays relevant information on all screen sizes, and includes better button clicking mechanics for dropdown menu.
|
||||
|
|
|
@ -177,7 +177,7 @@ class SubuserRepository
|
|||
|
||||
$server->node->guzzleClient([
|
||||
'X-Access-Server' => $server->uuid,
|
||||
'X-Access-Token' => $node->daemonSecret,
|
||||
'X-Access-Token' => $server->node->daemonSecret,
|
||||
])->request('PATCH', '/server', [
|
||||
'json' => [
|
||||
'keys' => [
|
||||
|
|
Loading…
Reference in a new issue