From 5127f3dcbc192015f35836be8eb47f4944bbc337 Mon Sep 17 00:00:00 2001 From: Toshi MARUYAMA Date: Fri, 30 Dec 2011 12:52:08 +0000 Subject: [PATCH] route: move attachments resources after matching On Rails3.0, 'match' needs before resources. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8439 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- config/routes.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/routes.rb b/config/routes.rb index af9c2410a..480459bf2 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -261,7 +261,6 @@ ActionController::Routing::Routes.draw do |map| :conditions => {:method => :post} end - map.resources :attachments, :only => [:show, :destroy] # additional routes for having the file name at the end of url map.connect 'attachments/:id/:filename', :controller => 'attachments', :action => 'show', :id => /\d+/, :filename => /.*/, @@ -272,6 +271,7 @@ ActionController::Routing::Routes.draw do |map| map.connect 'attachments/download/:id', :controller => 'attachments', :action => 'download', :id => /\d+/, :conditions => {:method => :get} + map.resources :attachments, :only => [:show, :destroy] map.resources :groups, :member => {:autocomplete_for_user => :get} map.group_users 'groups/:id/users', :controller => 'groups',