diff options
author | Daniel Guettler <daniel.guettler@gmail.com> | 2009-05-17 14:48:20 +0200 |
---|---|---|
committer | Pratik Naik <pratiknaik@gmail.com> | 2009-05-17 14:48:20 +0200 |
commit | 25724eede9b5a62c74b3b78245944638f1cfcef4 (patch) | |
tree | e3c6606457fda47f35477c0e59cabc215931f0d4 /activerecord/lib/active_record/associations | |
parent | a9e8c4b37480564d27883dffe9134a9f95796a15 (diff) | |
download | rails-25724eede9b5a62c74b3b78245944638f1cfcef4.tar.gz rails-25724eede9b5a62c74b3b78245944638f1cfcef4.tar.bz2 rails-25724eede9b5a62c74b3b78245944638f1cfcef4.zip |
has_one :through should not create a new association when assigned nil [#698 state:resolved]
Signed-off-by: Pratik Naik <pratiknaik@gmail.com>
Diffstat (limited to 'activerecord/lib/active_record/associations')
-rw-r--r-- | activerecord/lib/active_record/associations/has_one_through_association.rb | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/activerecord/lib/active_record/associations/has_one_through_association.rb b/activerecord/lib/active_record/associations/has_one_through_association.rb index 8073ebaf9f..d93c8e7852 100644 --- a/activerecord/lib/active_record/associations/has_one_through_association.rb +++ b/activerecord/lib/active_record/associations/has_one_through_association.rb @@ -1,31 +1,31 @@ module ActiveRecord module Associations class HasOneThroughAssociation < HasManyThroughAssociation - + def create_through_record(new_value) #nodoc: klass = @reflection.through_reflection.klass current_object = @owner.send(@reflection.through_reflection.name) - + if current_object - current_object.update_attributes(construct_join_attributes(new_value)) + new_value ? current_object.update_attributes(construct_join_attributes(new_value)) : current_object.destroy else - @owner.send(@reflection.through_reflection.name, klass.send(:create, construct_join_attributes(new_value))) + @owner.send(@reflection.through_reflection.name, klass.send(:create, construct_join_attributes(new_value))) if new_value end end - + private def find(*args) super(args.merge(:limit => 1)) end - + def find_target super.first end def reset_target! @target = nil - end - end + end + end end end |