Commit 7b90680c authored by Airat Shigapov's avatar Airat Shigapov

Use guard clause instead of if-else statement

parent 32cf2e5f
......@@ -128,22 +128,21 @@ class HipchatService < Service
end
def markdown(text, options = {})
if text
context = {
project: project,
pipeline: :email
}
return "" unless text
Banzai.render(text, context)
context = {
project: project,
pipeline: :email
}
context.merge!(options)
Banzai.render(text, context)
html = Banzai.render(text, context)
html = Banzai.post_process(html, context)
sanitize html, attributes: %w(href title alt)
else
""
end
context.merge!(options)
html = Banzai.render(text, context)
html = Banzai.post_process(html, context)
sanitize html, attributes: %w(href title alt)
end
def create_issue_message(data)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment