summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKamil Trzcinski <ayufan@ayufan.eu>2016-12-15 23:51:57 +0100
committerKamil Trzcinski <ayufan@ayufan.eu>2016-12-15 23:51:57 +0100
commit727d293334ee65c0cb2a0cc629173dc2abdc9a66 (patch)
treed2334cd8c0f0ce7f66badce954e4d13825f10711
parent624bbb86fe58211c6e42ff37b8b0021f112c496e (diff)
downloadgitlab-ce-727d293334ee65c0cb2a0cc629173dc2abdc9a66.tar.gz
Use Slack compatible syntax
-rw-r--r--lib/gitlab/chat_commands/presenter.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/gitlab/chat_commands/presenter.rb b/lib/gitlab/chat_commands/presenter.rb
index 3143dc092a1..14c78ac39aa 100644
--- a/lib/gitlab/chat_commands/presenter.rb
+++ b/lib/gitlab/chat_commands/presenter.rb
@@ -6,7 +6,7 @@ module Gitlab
def authorize_chat_name(url)
message = if url
- ":wave: Hi there! Before I do anything for you, please [connect your GitLab account](#{url})."
+ ":wave: Hi there! Before I do anything for you, please <#{url}|connect your GitLab account>."
else
":sweat_smile: Couldn't identify you, nor can I autorize you!"
end
@@ -44,7 +44,7 @@ module Gitlab
end
def access_denied
- ephemeral_response("Whoops! That action is not allowed. This incident will be [reported](https://xkcd.com/838/).")
+ ephemeral_response("Whoops! That action is not allowed. This incident will be <https://xkcd.com/838/|reported>.")
end
private
@@ -65,7 +65,7 @@ module Gitlab
def single_resource(resource)
return error(resource) if resource.errors.any? || !resource.persisted?
- message = "### #{title(resource)}"
+ message = "#{title(resource)}:"
message << "\n\n#{resource.description}" if resource.try(:description)
in_channel_response(message)
@@ -89,7 +89,7 @@ module Gitlab
reference = resource.try(:to_reference) || resource.try(:id)
title = resource.try(:title) || resource.try(:name)
- "[#{reference} #{title}](#{url(resource)})"
+ "<#{url(resource)}|#{reference} #{title}>"
end
def header_with_list(header, items)