Skip to content

Instantly share code, notes, and snippets.

@ukoasis
Last active February 2, 2017 09:47
Show Gist options
  • Save ukoasis/848bf9a2556a5cf2ccba995ce7485b38 to your computer and use it in GitHub Desktop.
Save ukoasis/848bf9a2556a5cf2ccba995ce7485b38 to your computer and use it in GitHub Desktop.
Rails5なAPIで単純に404を返す方法 ref: http://qiita.com/ukoasis/items/53cebcfb9b6c7ee9dbeb
head :not_found
render :nothing => true, :status => 404
DEPRECATION WARNING: `:nothing` option is deprecated and will be removed in Rails 5.1. Use `head` method to respond with empty response body. (called from show at controller.rb:xx)
head :not_found
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment