aboutsummaryrefslogtreecommitdiff
path: root/rhodecode/lib/vcs/backends/git/changeset.py
diff options
context:
space:
mode:
authorMarcin Kuzminski <marcin@python-works.com>2012-08-04 21:39:05 +0200
committerMarcin Kuzminski <marcin@python-works.com>2012-08-04 21:39:05 +0200
commit026fbb4c07c119233fbb310e67a690894cfd7504 (patch)
tree1177dc646cca350efd7a3ba307840155a0147d7c /rhodecode/lib/vcs/backends/git/changeset.py
parenta4b58c3568ddc1c64827eb41fa9f13aa16dfbed2 (diff)
Extended commit search schema with date of commit
--HG-- branch : beta
Diffstat (limited to 'rhodecode/lib/vcs/backends/git/changeset.py')
-rw-r--r--rhodecode/lib/vcs/backends/git/changeset.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/rhodecode/lib/vcs/backends/git/changeset.py b/rhodecode/lib/vcs/backends/git/changeset.py
index 1d7904a2..91970376 100644
--- a/rhodecode/lib/vcs/backends/git/changeset.py
+++ b/rhodecode/lib/vcs/backends/git/changeset.py
@@ -60,6 +60,10 @@ class GitChangeset(BaseChangeset):
getattr(self._commit, self._date_tz_property))
@LazyProperty
+ def _timestamp(self):
+ return getattr(self._commit, self._date_property)
+
+ @LazyProperty
def status(self):
"""
Returns modified, added, removed, deleted files for current changeset