Created
November 16, 2010 18:57
-
-
Save mitio/702272 to your computer and use it in GitHub Desktop.
Small helper to allow generating forms without authenticity_token (when you have protect_from_forgery globally active).
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# lib/forgery_protection_helpers.rb | |
module ForgeryProtectionHelpers | |
def without_forgery_protection | |
return unless block_given? && respond_to?(:controller) | |
original_value = controller.allow_forgery_protection | |
controller.allow_forgery_protection = false | |
result = yield | |
controller.allow_forgery_protection = original_value | |
result | |
end | |
end | |
# app/application_controller.rb | |
class ApplicationController | |
protect_from_forgery | |
helper ForgeryProtectionHelpers | |
end | |
# app/views/foo/form.html.erb | |
<% without_forgery_protection do %> | |
<% form_for ... %> | |
<!-- no authentisity token hidden field will be added to this form --> | |
<% end %> | |
<% end %> | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Fair enough. I would consider not using
form_for
, but going with vanillatext_field_tag
, though. I think it sends a better message to the reader.