openstreetmap / openstreetmap-website

The Rails application that powers OpenStreetMap
https://www.openstreetmap.org/
GNU General Public License v2.0
2.21k stars 918 forks source link

Make the "remember me" option work as intended #5303

Closed tomhughes closed 1 week ago

tomhughes commented 2 weeks ago

The "remember me" checkbox has not been working properly, or rather it has been treated as checked even when it isn't.

The reason is the "Gotcha" details in the check_box documentation which means that the parameter has the value "0" when unticked.

gravitystorm commented 1 week ago

There's the integration tests that are now failing but it's not clear to me what's going wrong with them.

tomhughes commented 1 week ago

It needed a slight tweak to the view because when the form is rerendered on a failed login the parameter on the redirect comes from the session so now has a different value. It should be fixed now.

gravitystorm commented 1 week ago

Merged, thanks!