From 3badd4de2af58d6a92f52d4c69a25eb9df0bcc24 Mon Sep 17 00:00:00 2001 From: Victor Costa Date: Tue, 28 Jan 2014 16:23:44 -0300 Subject: [PATCH] rails3: add route alias to tag_feed --- config/routes.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/routes.rb b/config/routes.rb index 60eb8ea..3f7e51d 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -68,7 +68,7 @@ Noosfero::Application.routes.draw do match 'profile/:profile/invite/:action', :controller => 'invite', :profile => /#{Noosfero.identifier_format}/ # feeds per tag - match 'profile/:profile/tags/:id/feed', :controller => 'profile', :action =>'tag_feed', :id => /.+/, :profile => /#{Noosfero.identifier_format}/ + match 'profile/:profile/tags/:id/feed', :controller => 'profile', :action =>'tag_feed', :id => /.+/, :profile => /#{Noosfero.identifier_format}/, :as => :tag_feed # profile tags match 'profile/:profile/tags/:id', :controller => 'profile', :action => 'content_tagged', :id => /.+/, :profile => /#{Noosfero.identifier_format}/ -- libgit2 0.21.2