You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
At the moment, the user gets logged out (or is supposed to get logged out (#308)) when navigation to /logout via GET. This is not a good behavior as a GET request should not modify a state. An action like logout should only be performed via POST. I.e., instead of the current <a> link, we should have something like:
At the moment, the user gets logged out (or is supposed to get logged out (#308)) when navigation to
/logout
via GET. This is not a good behavior as a GET request should not modify a state. An action like logout should only be performed via POST. I.e., instead of the current<a>
link, we should have something like:And the page should only perform the logout, if it is called via POST.
The text was updated successfully, but these errors were encountered: