diff options
author | Eric Davis <edavis@littlestreamsoftware.com> | 2010-08-27 14:05:54 +0000 |
---|---|---|
committer | Eric Davis <edavis@littlestreamsoftware.com> | 2010-08-27 14:05:54 +0000 |
commit | b925325ddbd5fb594f20221dd724f7822ed4c3d3 (patch) | |
tree | 91e51c09bf06bbbe143ec0b530caad6bd9725448 /app/views/boards | |
parent | 5b08b2f33d4072e2a41545637ef40365c3ef7ea4 (diff) | |
download | redmine-b925325ddbd5fb594f20221dd724f7822ed4c3d3.tar.gz redmine-b925325ddbd5fb594f20221dd724f7822ed4c3d3.zip |
Refactor: extract ProjectsController#activity to a new Activities controller.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@4047 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/boards')
-rw-r--r-- | app/views/boards/index.rhtml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/boards/index.rhtml b/app/views/boards/index.rhtml index 7cc6a0e2f..6310f942e 100644 --- a/app/views/boards/index.rhtml +++ b/app/views/boards/index.rhtml @@ -30,11 +30,11 @@ </table> <% other_formats_links do |f| %> - <%= f.link_to 'Atom', :url => {:controller => 'projects', :action => 'activity', :id => @project, :show_messages => 1, :key => User.current.rss_key} %> + <%= f.link_to 'Atom', :url => {:controller => 'activities', :action => 'index', :id => @project, :show_messages => 1, :key => User.current.rss_key} %> <% end %> <% content_for :header_tags do %> - <%= auto_discovery_link_tag(:atom, {:controller => 'projects', :action => 'activity', :id => @project, :format => 'atom', :show_messages => 1, :key => User.current.rss_key}) %> + <%= auto_discovery_link_tag(:atom, {:controller => 'activities', :action => 'index', :id => @project, :format => 'atom', :show_messages => 1, :key => User.current.rss_key}) %> <% end %> <% html_title l(:label_board_plural) %> |