fix #987 where feeds_path returned the mobile url and not the non-mobile one.

This commit is contained in:
Reinier Balt 2010-05-01 17:32:55 +02:00
parent 06ac3067d3
commit fabc15e061

View file

@ -58,8 +58,8 @@ ActionController::Routing::Routes.draw do |map|
map.root :controller => 'todos' # Make OpenID happy because it needs #root_url defined
map.resources :notes
map.feeds 'feeds', :controller => 'feedlist', :action => 'index'
map.feeds 'feeds.m', :controller => 'feedlist', :action => 'index', :format => 'm'
map.feeds 'feeds', :controller => 'feedlist', :action => 'index'
if Rails.env == 'test'
map.connect '/selenium_helper/login', :controller => 'selenium_helper', :action => 'login'