diff rhodecode/config/routing.py @ 1748:a3ee2611e6e8 beta

implements #135 bookmark support for UI
author Marcin Kuzminski <marcin@python-works.com>
date Fri, 02 Dec 2011 00:15:26 +0200
parents e7eef7a1db6a
children 1088ded6e602
line wrap: on
line diff
--- a/rhodecode/config/routing.py	Thu Dec 01 03:11:26 2011 +0200
+++ b/rhodecode/config/routing.py	Fri Dec 02 00:15:26 2011 +0200
@@ -403,6 +403,9 @@
     rmap.connect('tags_home', '/{repo_name:.*}/tags',
                 controller='tags', conditions=dict(function=check_repo))
 
+    rmap.connect('bookmarks_home', '/{repo_name:.*}/bookmarks',
+                controller='bookmarks', conditions=dict(function=check_repo))
+
     rmap.connect('changelog_home', '/{repo_name:.*}/changelog',
                 controller='changelog', conditions=dict(function=check_repo))