Add a browse page for bugs

This commit is contained in:
Kai Krueger 2010-03-13 13:45:02 +00:00
parent c22958faed
commit 01aa270315
7 changed files with 122 additions and 3 deletions

View file

@ -92,6 +92,7 @@ ActionController::Routing::Routes.draw do |map|
map.changeset '/browse/changeset/:id', :controller => 'browse', :action => 'changeset', :id => /\d+/
map.connect '/browse/changesets', :controller => 'changeset', :action => 'list'
map.connect '/browse/changesets/feed', :controller => 'changeset', :action => 'list', :format => :atom
map.connect '/browse/bug/:id', :controller => 'browse', :action => 'bug', :id => /\d+/
# web site
map.root :controller => 'site', :action => 'index'