Fix subuser URL redirect, closes #723
This commit is contained in:
parent
e945033c95
commit
22ba6cbecb
|
@ -7,6 +7,7 @@ This project follows [Semantic Versioning](http://semver.org) guidelines.
|
||||||
### Fixed
|
### Fixed
|
||||||
* `[beta.1]` — Fixes a CORS header issue due to a wrong API endpoint being provided in the administrative node listing.
|
* `[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 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)
|
## v0.7.0-beta.1 (Derelict Dermodactylus)
|
||||||
### Added
|
### Added
|
||||||
|
|
|
@ -172,7 +172,7 @@ class SubuserController extends Controller
|
||||||
|
|
||||||
return redirect()->route('server.subusers.view', [
|
return redirect()->route('server.subusers.view', [
|
||||||
'uuid' => $server->uuid,
|
'uuid' => $server->uuid,
|
||||||
'id' => $subuser->id,
|
'id' => $subuser->hashid,
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue