diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2008-06-15 14:19:06 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2008-06-15 14:19:06 +0000 |
commit | 5051566e51a30cbc3776e84774d492b24abb03d6 (patch) | |
tree | b1b527c84226f63cd8ad5c3c790e293ae670a1e6 /config | |
parent | 576130f363ffb766fbf2a3d47ab1b09758b68a1e (diff) | |
download | redmine-5051566e51a30cbc3776e84774d492b24abb03d6.tar.gz redmine-5051566e51a30cbc3776e84774d492b24abb03d6.zip |
Prettier url for changesets (#1443).
git-svn-id: http://redmine.rubyforge.org/svn/trunk@1549 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'config')
-rw-r--r-- | config/routes.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/config/routes.rb b/config/routes.rb index 3cb18d1bd..a77a8833b 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -29,6 +29,7 @@ ActionController::Routing::Routes.draw do |map| omap.repositories_diff 'repositories/diff/:id/*path', :action => 'diff' omap.repositories_entry 'repositories/entry/:id/*path', :action => 'entry' omap.repositories_entry 'repositories/annotate/:id/*path', :action => 'annotate' + omap.repositories_revision 'repositories/revision/:id/:rev', :action => 'revision' end map.connect 'attachments/:id', :controller => 'attachments', :action => 'show' |