Skip to content

Instantly share code, notes, and snippets.

@mktakuya
Created February 3, 2016 12:01
Show Gist options
  • Save mktakuya/ae5afdc659335a83e179 to your computer and use it in GitHub Desktop.
Save mktakuya/ae5afdc659335a83e179 to your computer and use it in GitHub Desktop.
ActiveRecord::Callbacksのサンプル
class Like < ActiveRecord::Base
after_save :send_email_notification
after_save :send_facebook_notification
def send_mail_notification
# メール送信の処理
end
def send_facebook_notification
# facebook通知の処理
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment