Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKevin Sawicki2011-04-10 21:31:05 +0000
committerChris Aniszczyk2011-04-11 00:38:01 +0000
commitc093f6e5d6aa9a7cea928cb097ea4fc103f287cc (patch)
tree5aa2897fb67d9066f24c5961acbc2b7cc0ce0e59
parent052abaf070d99db240665456da9af53765438173 (diff)
downloadegit-github-c093f6e5d6aa9a7cea928cb097ea4fc103f287cc.tar.gz
egit-github-c093f6e5d6aa9a7cea928cb097ea4fc103f287cc.tar.xz
egit-github-c093f6e5d6aa9a7cea928cb097ea4fc103f287cc.zip
Add task attributes for assignee and milestone fields
Change-Id: Ifd186b1087a2b9e67d1c11a252ed6574f0cce97e Signed-off-by: Kevin Sawicki <kevin@github.com> Signed-off-by: Chris Aniszczyk <caniszczyk@gmail.com>
-rw-r--r--org.eclipse.mylyn.github.core/src/org/eclipse/mylyn/github/internal/GitHubTaskAttributes.java4
1 files changed, 3 insertions, 1 deletions
diff --git a/org.eclipse.mylyn.github.core/src/org/eclipse/mylyn/github/internal/GitHubTaskAttributes.java b/org.eclipse.mylyn.github.core/src/org/eclipse/mylyn/github/internal/GitHubTaskAttributes.java
index ca0ead38..4f07bcfe 100644
--- a/org.eclipse.mylyn.github.core/src/org/eclipse/mylyn/github/internal/GitHubTaskAttributes.java
+++ b/org.eclipse.mylyn.github.core/src/org/eclipse/mylyn/github/internal/GitHubTaskAttributes.java
@@ -27,7 +27,9 @@ public enum GitHubTaskAttributes {
STATUS("Status:",TaskAttribute.STATUS,TaskAttribute.TYPE_SHORT_TEXT,true,false,true),
REPORTER("Reporter:", TaskAttribute.USER_REPORTER, TaskAttribute.TYPE_PERSON, true, true, false),
COMMENT_NEW("Comment:", TaskAttribute.COMMENT_NEW, TaskAttribute.TYPE_LONG_RICH_TEXT, false, false, false),
- LABELS("Labels:", "github.issue.labels", TaskAttribute.TYPE_MULTI_SELECT, true, true, false)
+ LABELS("Labels:", "github.issue.labels", TaskAttribute.TYPE_MULTI_SELECT, true, true, false),
+ ASSIGNEE("Assignee:", TaskAttribute.USER_ASSIGNED, TaskAttribute.TYPE_PERSON, true, false, true),
+ MILESTONE("Milestone:", "github.issue.milestone", TaskAttribute.TYPE_SINGLE_SELECT, true, false, true)
;
private final String id;

Back to the top