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 ...@@ -128,22 +128,21 @@ class HipchatService < Service
end end
def markdown(text, options = {}) def markdown(text, options = {})
if text return "" unless text
context = {
project: project,
pipeline: :email
}
Banzai.render(text, context) context = {
project: project,
pipeline: :email
}
context.merge!(options) Banzai.render(text, context)
html = Banzai.render(text, context) context.merge!(options)
html = Banzai.post_process(html, context)
sanitize html, attributes: %w(href title alt) html = Banzai.render(text, context)
else html = Banzai.post_process(html, context)
""
end sanitize html, attributes: %w(href title alt)
end end
def create_issue_message(data) 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