diff rhodecode/lib/vcs/backends/git/repository.py @ 4020:218ed589e44a

branch selectors: show closed branches too It would be even better if they were fetched dynamically somehow and perhaps placed in a sub sub menu ... but showing them in the list is often better than not showing them at all.
author Mads Kiilerich <madski@unity3d.com>
date Tue, 04 Jun 2013 13:26:41 +0200
parents f5a1314886ec
children 7c73f1868318
line wrap: on
line diff
--- a/rhodecode/lib/vcs/backends/git/repository.py	Tue Jun 18 21:54:28 2013 +0200
+++ b/rhodecode/lib/vcs/backends/git/repository.py	Tue Jun 04 13:26:41 2013 +0200
@@ -371,6 +371,10 @@
         return OrderedDict(sorted(_branches, key=sortkey, reverse=False))
 
     @LazyProperty
+    def closed_branches(self):
+        return {}
+
+    @LazyProperty
     def tags(self):
         return self._get_tags()