BigW Consortium Gitlab

Commit 1c780792 by Airat Shigapov Committed by blackst0ne

Use guard clause instead of if-else statement

parent f6a97e6c
......@@ -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