diff options
author | Malf Furious <m@lfurio.us> | 2016-02-07 15:11:25 -0500 |
---|---|---|
committer | Malf Furious <m@lfurio.us> | 2016-02-07 15:11:25 -0500 |
commit | f7e765480572920ba396a747f0294c75ab813202 (patch) | |
tree | a76a71247be0044e393c487931471d752bafcda0 /app/class | |
parent | 89341dc13fd30bed744e052aa5f82deb4d4a5b93 (diff) | |
download | scrott-f7e765480572920ba396a747f0294c75ab813202.tar.gz scrott-f7e765480572920ba396a747f0294c75ab813202.zip |
Add fields to Issue object
This adds attributes to an issue:
due date (optional datetime)
tags (space separated string of words to help categorize issues (again, optional))
Diffstat (limited to 'app/class')
-rw-r--r-- | app/class/issue.class.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/app/class/issue.class.php b/app/class/issue.class.php index 90a095c..67bf683 100644 --- a/app/class/issue.class.php +++ b/app/class/issue.class.php @@ -17,7 +17,9 @@ class Issue extends Object "number", "assignee", "unread", - "desc" + "desc", + "due", + "tags" ); parent::__construct("issue", $cols); |