Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2022-02-12 00:12:17 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2022-02-12 00:12:17 +0300
commitf8dfaa8d4140328fa63282d3d6ac159d571dab84 (patch)
tree9f4653f3789362f95974bfe3ca88bd10fde59b00 /app/graphql/graphql_triggers.rb
parente57809ded8e4e64c0528d33a5f59e9160e310d14 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/graphql/graphql_triggers.rb')
-rw-r--r--app/graphql/graphql_triggers.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/app/graphql/graphql_triggers.rb b/app/graphql/graphql_triggers.rb
index 290cd4d7146..ac1a4a6b9ef 100644
--- a/app/graphql/graphql_triggers.rb
+++ b/app/graphql/graphql_triggers.rb
@@ -8,4 +8,8 @@ module GraphqlTriggers
def self.issue_crm_contacts_updated(issue)
GitlabSchema.subscriptions.trigger('issueCrmContactsUpdated', { issuable_id: issue.to_gid }, issue)
end
+
+ def self.issuable_title_updated(issuable)
+ GitlabSchema.subscriptions.trigger('issuableTitleUpdated', { issuable_id: issuable.to_gid }, issuable)
+ end
end