Remove index.html from redirect on '/auth/admin/'
This commit is contained in:
parent
6814230193
commit
73f59417bd
1 changed files with 1 additions and 1 deletions
|
@ -64,7 +64,7 @@ public class AdminRoot {
|
|||
public Response masterRealmAdminConsoleRedirect() {
|
||||
RealmModel master = new RealmManager(session).getKeycloakAdminstrationRealm();
|
||||
return Response.status(302).location(
|
||||
uriInfo.getBaseUriBuilder().path(AdminRoot.class).path(AdminRoot.class, "getAdminConsole").path("index.html").build(master.getName())
|
||||
uriInfo.getBaseUriBuilder().path(AdminRoot.class).path(AdminRoot.class, "getAdminConsole").path("/").build(master.getName())
|
||||
).build();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue