This works in rails 0.12.1 but not in 0.13.0:
map.connect ''inbox/welcome/:id/:key'',
:controller => ''inbox'',
:action => ''welcome'',
:id => /\d+/,
:key => /[a-z0-9]{40}.*/
Any idea why?
--Jonas Galvez
Disregard. Jonas Galvez wrote:> This works in rails 0.12.1 but not in 0.13.0: > > map.connect ''inbox/welcome/:id/:key'', > :controller => ''inbox'', > :action => ''welcome'', > :id => /\d+/, > :key => /[a-z0-9]{40}.*/ > > Any idea why? > > --Jonas Galvez