Fix subuser URL redirect, closes #723

This commit is contained in:
Dane Everitt 2017-11-05 12:42:58 -06:00
parent e945033c95
commit 22ba6cbecb
No known key found for this signature in database
GPG Key ID: EEA66103B3D71F53
2 changed files with 2 additions and 1 deletions

View File

@ -7,6 +7,7 @@ This project follows [Semantic Versioning](http://semver.org) guidelines.
### Fixed
* `[beta.1]` — Fixes a CORS header issue due to a wrong API endpoint being provided in the administrative node listing.
* `[beta.1]` — Fixes bug that would prevent root admins from accessing servers they were not set as the owner of.
* `[beta.1]` — Fixes wrong URL redirect being provided when creating a subuser.
## v0.7.0-beta.1 (Derelict Dermodactylus)
### Added

View File

@ -172,7 +172,7 @@ class SubuserController extends Controller
return redirect()->route('server.subusers.view', [
'uuid' => $server->uuid,
'id' => $subuser->id,
'id' => $subuser->hashid,
]);
}