I'd like to shorten up a confirmation link so that users won't have text-wrapping issues in their e-mail clients. My links look like this (using Devise confirmable):
http://example.example.com/users/invitation/accept?invitation_token=4O-R8B9XbJdB1OIa2J27
and I'd like to make them more like
http://example.example.com/yes?t=4O-R8B9XbJdB1OIa2J27
or even shorter if possible.
Is there a simple way to do this in routing?
Walter