diff options
| author | Kevin Sawicki | 2011-04-11 21:45:23 +0000 |
|---|---|---|
| committer | Chris Aniszczyk | 2011-04-12 13:29:22 +0000 |
| commit | 7fcde315271bc162239fe9571b068b0570a277f6 (patch) | |
| tree | 33926bb7f36f250f239f3977dd5fec8ba8593f3a | |
| parent | 4c78b556af5df75a90f1012ef8cbca3e090cd067 (diff) | |
| download | egit-github-7fcde315271bc162239fe9571b068b0570a277f6.tar.gz egit-github-7fcde315271bc162239fe9571b068b0570a277f6.tar.xz egit-github-7fcde315271bc162239fe9571b068b0570a277f6.zip | |
Add task attributes for assignee/reporter gravatar url
Change-Id: Idc8804c665b9bed938116b93a204e40a3f8fc54d
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.java | 4 |
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 4f07bcfe..5b8edd3f 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 @@ -29,7 +29,9 @@ public enum GitHubTaskAttributes { 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), ASSIGNEE("Assignee:", TaskAttribute.USER_ASSIGNED, TaskAttribute.TYPE_PERSON, true, false, true), - MILESTONE("Milestone:", "github.issue.milestone", TaskAttribute.TYPE_SINGLE_SELECT, true, false, true) + MILESTONE("Milestone:", "github.issue.milestone", TaskAttribute.TYPE_SINGLE_SELECT, true, false, true), + ASSIGNEE_GRAVATAR("Assignee", "github.issue.assignee.gravatar", TaskAttribute.TYPE_URL, false, true, false), + REPORTER_GRAVATAR("Reporter", "github.issue.reporter.gravatar", TaskAttribute.TYPE_URL, false, true, false), ; private final String id; |
