diff options
Diffstat (limited to 'config')
-rw-r--r-- | config/routes.rb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/config/routes.rb b/config/routes.rb index 42e778d0a..f0d9f503a 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -138,6 +138,9 @@ ActionController::Routing::Routes.draw do |map| end map.with_options :controller => 'news' do |news_routes| + news_routes.connect 'news/:id/preview', :controller => 'previews', :action => 'news' + news_routes.connect 'news/preview', :controller => 'previews', :action => 'news' + news_routes.with_options :conditions => {:method => :get} do |news_views| news_views.connect 'news', :action => 'index' news_views.connect 'projects/:project_id/news', :action => 'index' |