Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'connector-bugzilla-rest/org.eclipse.mylyn.bugzilla.rest.core/src/org/eclipse/mylyn/internal/bugzilla/rest/core/BugzillaRestTaskSchema.java')
-rw-r--r--connector-bugzilla-rest/org.eclipse.mylyn.bugzilla.rest.core/src/org/eclipse/mylyn/internal/bugzilla/rest/core/BugzillaRestTaskSchema.java10
1 files changed, 8 insertions, 2 deletions
diff --git a/connector-bugzilla-rest/org.eclipse.mylyn.bugzilla.rest.core/src/org/eclipse/mylyn/internal/bugzilla/rest/core/BugzillaRestTaskSchema.java b/connector-bugzilla-rest/org.eclipse.mylyn.bugzilla.rest.core/src/org/eclipse/mylyn/internal/bugzilla/rest/core/BugzillaRestTaskSchema.java
index ed96ad889..b0aefe9b0 100644
--- a/connector-bugzilla-rest/org.eclipse.mylyn.bugzilla.rest.core/src/org/eclipse/mylyn/internal/bugzilla/rest/core/BugzillaRestTaskSchema.java
+++ b/connector-bugzilla-rest/org.eclipse.mylyn.bugzilla.rest.core/src/org/eclipse/mylyn/internal/bugzilla/rest/core/BugzillaRestTaskSchema.java
@@ -28,7 +28,7 @@ public class BugzillaRestTaskSchema extends AbstractTaskSchema {
.put("status", getDefault().STATUS.getKey()) //$NON-NLS-1$
.put("product", getDefault().PRODUCT.getKey()) //$NON-NLS-1$
.put("component", getDefault().COMPONENT.getKey()) //$NON-NLS-1$
- .put("CC", getDefault().CC.getKey()) //$NON-NLS-1$
+ .put("cc", getDefault().CC.getKey()) //$NON-NLS-1$
.put("severity", getDefault().SEVERITY.getKey()) //$NON-NLS-1$
.put("priority", getDefault().PRIORITY.getKey()) //$NON-NLS-1$
.put("assigned_to", getDefault().ASSIGNED_TO.getKey()) //$NON-NLS-1$
@@ -108,7 +108,13 @@ public class BugzillaRestTaskSchema extends AbstractTaskSchema {
.dependsOn(COMPONENT.getKey())
.create();
- public final Field CC = createField(TaskAttribute.USER_CC, "CC", TaskAttribute.TYPE_PERSON, Flag.PEOPLE);
+ public final Field ADD_CC = createField("addCC", "Add CC", TaskAttribute.TYPE_PERSON, Flag.PEOPLE);
+
+ public final Field CC = createField(TaskAttribute.USER_CC, "Remove CC\n(Selet to remove)",
+ IBugzillaRestConstants.EDITOR_TYPE_CC, Flag.PEOPLE);
+
+ public final Field REMOVE_CC = createField("removeCC", "CC selected for remove",
+ IBugzillaRestConstants.EDITOR_TYPE_CC);
public final Field ADD_SELF_CC = inheritFrom(parent.ADD_SELF_CC).addFlags(Flag.PEOPLE).create();

Back to the top