Skip to content

Instantly share code, notes, and snippets.

@cthornton
Last active August 29, 2015 14:03
Show Gist options
  • Save cthornton/029720c94ddd90227b4b to your computer and use it in GitHub Desktop.
Save cthornton/029720c94ddd90227b4b to your computer and use it in GitHub Desktop.
Blog
class ApiController < ActionController::Base
rescue_from ActionController::ParameterMissing do |e|
# You can even render a jbuilder template too!
render json: {error: e.message }, status: :unprocessable_entity
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment