# HG changeset patch # User Marcin Kuzminski # Date 1374003663 -7200 # Node ID 7c73f1868318763928c8182ef6f72cae4a053b5d # Parent 182a25646cf44620288c6bf5cae85784d2e6122a Add bookmarks property to git branch, it makes it consistent with other property named closed branches. Makes git and hg API consistent diff -r 182a25646cf4 -r 7c73f1868318 rhodecode/lib/vcs/backends/git/repository.py --- a/rhodecode/lib/vcs/backends/git/repository.py Sat Jul 13 21:28:50 2013 +0200 +++ b/rhodecode/lib/vcs/backends/git/repository.py Tue Jul 16 21:41:03 2013 +0200 @@ -433,6 +433,13 @@ raise RepositoryError(e.strerror) @LazyProperty + def bookmarks(self): + """ + Get's bookmarks for this repository + """ + return {} + + @LazyProperty def _parsed_refs(self): return self._get_parsed_refs()