-
-
Save thermistor/3744364 to your computer and use it in GitHub Desktop.
make Rails respond to an HTTP OPTIONS method request
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
# Add to routes.rb | |
# Needed for responding to OPTIONS http method | |
map.connect '*path', | |
:controller => 'home', | |
:action => 'options_for_mopd', | |
:conditions => {:method => :options} | |
# in home_controller.rb | |
def options_for_mopd | |
render :nothing => true, :status => 200 | |
end | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment