Skip to content

Instantly share code, notes, and snippets.

@yoppi
Created October 29, 2015 01:44
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 yoppi/468485df9eeb4a680bb7 to your computer and use it in GitHub Desktop.
Save yoppi/468485df9eeb4a680bb7 to your computer and use it in GitHub Desktop.
after_actionするやつ
class AController < ApplicationController
after_action :f, if: -> { response.status == 200 }
def f
end
def x
head 200 # call f
# head 404 # not call f
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment