diff --git a/CHANGELOG.md b/CHANGELOG.md index 644f9e8ef..0c8e8f8d3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/app/Http/Controllers/Server/SubuserController.php b/app/Http/Controllers/Server/SubuserController.php index 00d7b9291..b507bbb45 100644 --- a/app/Http/Controllers/Server/SubuserController.php +++ b/app/Http/Controllers/Server/SubuserController.php @@ -172,7 +172,7 @@ class SubuserController extends Controller return redirect()->route('server.subusers.view', [ 'uuid' => $server->uuid, - 'id' => $subuser->id, + 'id' => $subuser->hashid, ]); }