ruby - Three dots in url segment in rails routing -


a way avoid dot in url segment in route use:

constraints: { id: /.*/ } 

this works /myroute/foo.bar, not /myroute/foo.bar@email.com, need because users signed emails login name.

if assist, appreciate it.


Comments