Changeset - 7c73f1868318
[Not reviewed]
default
0 1 0
Marcin Kuzminski - 12 years ago 2013-07-16 21:41:03
marcin@python-works.com
Add bookmarks property to git branch, it makes it consistent with other property
named closed branches. Makes git and hg API consistent
1 file changed with 7 insertions and 0 deletions:
0 comments (0 inline, 0 general)
rhodecode/lib/vcs/backends/git/repository.py
Show inline comments
 
@@ -433,6 +433,13 @@ class GitRepository(BaseRepository):
 
            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()
 

	
0 comments (0 inline, 0 general)