Show More
@@ -340,11 +340,7 b' def get_repo_changeset(request, apiuser,' | |||
|
340 | 340 | _cs_json = cs.__json__() |
|
341 | 341 | _cs_json['diff'] = build_commit_data(cs, changes_details) |
|
342 | 342 | if changes_details == 'full': |
|
343 |
_cs_json['refs'] = |
|
|
344 | 'branches': [cs.branch], | |
|
345 | 'bookmarks': getattr(cs, 'bookmarks', []), | |
|
346 | 'tags': cs.tags | |
|
347 | } | |
|
343 | _cs_json['refs'] = cs._get_refs() | |
|
348 | 344 | return _cs_json |
|
349 | 345 | |
|
350 | 346 |
@@ -708,6 +708,13 b' class BaseCommit(object):' | |||
|
708 | 708 | 'branch': self.branch |
|
709 | 709 | } |
|
710 | 710 | |
|
711 | def _get_refs(self): | |
|
712 | return { | |
|
713 | 'branches': [self.branch], | |
|
714 | 'bookmarks': getattr(self, 'bookmarks', []), | |
|
715 | 'tags': self.tags | |
|
716 | } | |
|
717 | ||
|
711 | 718 | @LazyProperty |
|
712 | 719 | def last(self): |
|
713 | 720 | """ |
General Comments 0
You need to be logged in to leave comments.
Login now