summaryrefslogtreecommitdiffstats
path: root/app/class
diff options
context:
space:
mode:
authorMalf Furious <m@lfurio.us>2018-10-20 21:49:32 -0400
committerMalf Furious <m@lfurio.us>2018-10-20 21:49:32 -0400
commitb690505b0e1e255e5081adcf49c724186bb831c2 (patch)
tree71195ab44722aa2c6cc03824c2757ad3e209e0e3 /app/class
parentb093b3affe3ac6878e2242bff310dc466687a825 (diff)
downloadscrott-b690505b0e1e255e5081adcf49c724186bb831c2.tar.gz
scrott-b690505b0e1e255e5081adcf49c724186bb831c2.zip
issue: Add assigned timestamp
Diffstat (limited to '')
-rw-r--r--app/class/issue.class.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/app/class/issue.class.php b/app/class/issue.class.php
index 5d1daec..57fc588 100644
--- a/app/class/issue.class.php
+++ b/app/class/issue.class.php
@@ -37,6 +37,7 @@ class issue extends obj
"seen",
"description",
"opened",
+ "assigned",
"authored",
"closed",
"due",
@@ -89,6 +90,7 @@ class issue extends obj
{
$this->seen = 0;
$this->assignee = $assignee->guid;
+ $this->assigned = self::getCurrentTimestamp();
$this->saveObj();
}