aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/associations/has_many_through_association.rb
diff options
context:
space:
mode:
Diffstat (limited to 'activerecord/lib/active_record/associations/has_many_through_association.rb')
-rw-r--r--activerecord/lib/active_record/associations/has_many_through_association.rb10
1 files changed, 10 insertions, 0 deletions
diff --git a/activerecord/lib/active_record/associations/has_many_through_association.rb b/activerecord/lib/active_record/associations/has_many_through_association.rb
index 437c8b1fd6..2c9fa3b447 100644
--- a/activerecord/lib/active_record/associations/has_many_through_association.rb
+++ b/activerecord/lib/active_record/associations/has_many_through_association.rb
@@ -7,6 +7,11 @@ module ActiveRecord
class HasManyThroughAssociation < HasManyAssociation #:nodoc:
include ThroughAssociationScope
+ def build(attributes = {}, &block)
+ ensure_not_nested
+ super
+ end
+
alias_method :new, :build
def create!(attrs = nil)
@@ -36,6 +41,7 @@ module ActiveRecord
protected
def create_record(attrs, force = true)
+ ensure_not_nested
ensure_owner_is_not_new
transaction do
@@ -59,6 +65,8 @@ module ActiveRecord
end
def insert_record(record, force = true, validate = true)
+ ensure_not_nested
+
if record.new_record?
if force
record.save!
@@ -74,6 +82,8 @@ module ActiveRecord
# TODO - add dependent option support
def delete_records(records)
+ ensure_not_nested
+
klass = @reflection.through_reflection.klass
records.each do |associate|
klass.delete_all(construct_join_attributes(associate))