Skip to content

Instantly share code, notes, and snippets.

@MaryKuz
Created March 28, 2019 11:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MaryKuz/25b02daf4c0a9cf898c419c670583473 to your computer and use it in GitHub Desktop.
Save MaryKuz/25b02daf4c0a9cf898c419c670583473 to your computer and use it in GitHub Desktop.
Add code to ApplicationController
class ApplicationController < ActionController::Base
...
skip_before_action :verify_authenticity_token, if: :json_request?
private
def json_request?
request.format.json?
end
...
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment