The pressing issue here is that URLs like http://wagn.org/card/unwatch/Ticket (in the notification email) don't work if you're not signed in. They prompt you to sign in, but then you're at the home page and there's no clear way to unwatch or even get to the Ticket card.
There are two main cases where we want to return to a previous address:
My point in spelling all of this out is that the "history stack" will not solve both problems. For the "next step" (#2) cases, we almost never want to go back to performing some action on a card that was previously in progress. And for the interrupted actions (#1), we don't really want a queue - we just want to go back to that action. No need to keep a stack.
But currently, we don't have any great way of handling "action interrupted".
I think in the action interrupted case, the best idea is to pass the interrupted action url through the signin process via cgi variables. (note, it could also be desirable to be able to preserve this action through signup and/or forgot password, but my inclination would not be to start there).
Perhaps we could even make all of this possible via AJAX, so that if I were to try to edit something in place for which I did not have permissions, I'd get sign-in options right there and then be able to continue in place.
also see retain GET query when signing in
I would say that one is a subset of this one.
AJAX is probably the best solution to this, but maybe it needs several approaches. If the action is reloading the browser page, it probably works a bit better to let the server handle it, since the server knows how/why it got interrupted, but if the action is going to be processed in AJAX ways, it will be hard to get back without AJAX help. I think the tricky part will be that it needs to do the sign-in/signup, etc. within a frame or slot, and I don't think sign-in/signup works that way now.
I would say AJAX is a secondary concern. First is getting the representation and the simple cases right.
in other words, I don't think an ajax-only solution makes sense, but it would be cool if the ajax and non-ajax behaviors were pretty close to the same.
I implemented a simple solution: when an action is interrupted by a sign-in I save the uri in the session and return to that uri after the sign-in
is there a PR for this?