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:
authorJason Goodman <jgoodman@gitlab.com>2019-05-02 19:07:26 +0300
committerDouglas Barbosa Alexandre <dbalexandre@gmail.com>2019-05-02 19:07:26 +0300
commit1b8646804d323d1a919c0150511168f8b6ef41d1 (patch)
treee566308e3b8dc3b19b62c1be2c239ee00d3e04af /lib/gitlab/url_builder.rb
parentf1526ccd5859f29bf054202a53a371e25c1dcb10 (diff)
Update deployment chat message notification
Include link to user and commit title. Rearrange text
Diffstat (limited to 'lib/gitlab/url_builder.rb')
-rw-r--r--lib/gitlab/url_builder.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/gitlab/url_builder.rb b/lib/gitlab/url_builder.rb
index 169ce8ab026..42cf1ec1f0e 100644
--- a/lib/gitlab/url_builder.rb
+++ b/lib/gitlab/url_builder.rb
@@ -32,6 +32,8 @@ module Gitlab
milestone_url(object)
when ::Ci::Build
project_job_url(object.project, object)
+ when User
+ user_url(object)
else
raise NotImplementedError.new("No URL builder defined for #{object.class}")
end