Files
openfoodnetwork/app/services/trix_sanitizer.rb
Jean-Baptiste Bellet 4c27e79519 Sanitize content when display it on shop
Use the TrixSanitizer | TrixScrubber
2023-09-04 15:46:54 +02:00

12 lines
225 B
Ruby

# frozen_string_literal: true
class TrixSanitizer
include ActionView::Helpers::SanitizeHelper
def sanitize_content(content)
return if content.blank?
sanitize(content.to_s, scrubber: TrixScrubber.new)
end
end