aboutsummaryrefslogtreecommitdiffstats
path: root/webui/src/pages/bug/labels/SetLabel.graphql
diff options
context:
space:
mode:
authorTim Becker <tim.becker@mni.thm.de>2021-03-24 23:26:14 +0100
committerSascha <GlancingMind@outlook.com>2021-04-08 14:56:59 +0200
commitd39e6c4c4391c1a3cd96f791b47d66b043da7f51 (patch)
treec4a45588aa95d4ac76350c5b718ee2dca85ce5e8 /webui/src/pages/bug/labels/SetLabel.graphql
parentabbed0ff129755386ccbf89409ff8c3877f86d20 (diff)
downloadgit-bug-d39e6c4c4391c1a3cd96f791b47d66b043da7f51.tar.gz
Add label menu to bug detail page
Also support label color in label filter menu on bug list page
Diffstat (limited to 'webui/src/pages/bug/labels/SetLabel.graphql')
-rw-r--r--webui/src/pages/bug/labels/SetLabel.graphql13
1 files changed, 13 insertions, 0 deletions
diff --git a/webui/src/pages/bug/labels/SetLabel.graphql b/webui/src/pages/bug/labels/SetLabel.graphql
new file mode 100644
index 00000000..44dfae11
--- /dev/null
+++ b/webui/src/pages/bug/labels/SetLabel.graphql
@@ -0,0 +1,13 @@
+mutation SetLabel($input: ChangeLabelInput) {
+ changeLabels(input: $input) {
+ results{
+ status,
+ label{
+ name,
+ color{R},
+ color{G},
+ color{B}
+ }
+ }
+ }
+}