method

prevent_content_exfiltration

prevent_content_exfiltration(html)
public

No documentation available.

# File actionview/lib/action_view/helpers/content_exfiltration_prevention_helper.rb, line 61
      def prevent_content_exfiltration(html)
        if prepend_content_exfiltration_prevention
          CONTENT_EXFILTRATION_PREVENTION_MARKUP + html
        else
          html
        end
      end