summaryrefslogtreecommitdiff
path: root/app/graphql/types/subscription_type.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/graphql/types/subscription_type.rb')
-rw-r--r--app/graphql/types/subscription_type.rb3
1 files changed, 3 insertions, 0 deletions
diff --git a/app/graphql/types/subscription_type.rb b/app/graphql/types/subscription_type.rb
index db6a247179d..de3f71090f6 100644
--- a/app/graphql/types/subscription_type.rb
+++ b/app/graphql/types/subscription_type.rb
@@ -12,5 +12,8 @@ module Types
field :issuable_title_updated, subscription: Subscriptions::IssuableUpdated, null: true,
description: 'Triggered when the title of an issuable is updated.'
+
+ field :issuable_labels_updated, subscription: Subscriptions::IssuableUpdated, null: true,
+ description: 'Triggered when the labels of an issuable are updated.'
end
end