diff --git a/rhodecode/lib/vcs/backends/git/repository.py b/rhodecode/lib/vcs/backends/git/repository.py --- a/rhodecode/lib/vcs/backends/git/repository.py +++ b/rhodecode/lib/vcs/backends/git/repository.py @@ -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()