method
prevent_content_exfiltration
v8.1.1 -
Show latest stable
- Class:
ActionView::Helpers::ContentExfiltrationPreventionHelper
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