I am using IUserSecurityStampStore to implement logout functions. Everything seems to be working fine, however I have a problem that every time the user changes his password, then she logs out.
One way around this problem is to call SignIn in Manage -Action from AccountController after changing the password.
This seems to work, but I think this is a bit awkward and probably not the right way.
That is why my questions are:
- How can I get OWIN to rewrite cookie for current login? user?
- If the above path is the right way, how do I know if the user wants to have her cookie permanent or not (SignIn wants this information)?
source share