aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/models/bird.rb
blob: 24b839135d0404c0f89326b68c62fd9355db7699 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
class Bird < ActiveRecord::Base
  belongs_to :pirate
  validates_presence_of :name

  accepts_nested_attributes_for :pirate

  attr_accessor :cancel_save_from_callback
  before_save :cancel_save_callback_method, if: :cancel_save_from_callback
  def cancel_save_callback_method
    throw(:abort)
  end
end