Show attachments in new issues and show flag if private comment

This commit is contained in:
Alexander Meindl
2020-03-03 15:16:02 +01:00
parent 48c4b99882
commit d2ad1fb020
2 changed files with 9 additions and 1 deletions

View File

@@ -13,6 +13,8 @@ class Messenger
# Redmine::WikiFormatting.html_parser.to_text(text)
text = +text.to_s
# @see https://api.slack.com/reference/surfaces/formatting#escaping
text.gsub!('&', '&')
text.gsub!('<', '&lt;')
text.gsub!('>', '&gt;')