Open abald124 opened 7 years ago
I'm not sure why, but going to "/Home/WindowsLogin" solves this.
Still looking into this, so far it seems the issue stems from this commit. Thus far I was able to patch it by changing line 44 in RepositoryController.cs to the following:
return RedirectToAction((AuthenticationProvider is WindowsAuthenticationProvider ? "WindowsLogin" : "Logon"), "Home", new { returnUrl = Url.Action("index", "Home") });
But I'm still looking into a more elegant solution/why it doesn't authenticate before hand. It doesn't seem like the CookieAuthenticationOptions that are configured ever get used.
Was there any release fixing this issue?
Upgraded to version 6.3.0 and using Active Directory Membership Service . Having issues with the redirect after authentication similar to the issues described in #731 and #733.
On a successful login the URL in address bar changes to /Home/Logon?returnUrl=%2FBonobo.Git.Server%2FHome%2FIndex but still stuck on the login page.
Know login was successful because I can manually put /Account in the address bar and get to the accounts index view.