1
0
Fork 0
mirror of https://github.com/heartcombo/simple_form.git synced 2022-11-09 12:19:26 -05:00

Mongoid compatibility improvement in belongs_to case (no more: undefined method `options' for #<Mongoid::Relations::Metadata>)

This commit is contained in:
nyjt 2012-01-25 15:08:46 +01:00
parent 9f7a7bcbb9
commit 2c26c19c2c

View file

@ -173,7 +173,7 @@ module SimpleForm
attribute = case reflection.macro
when :belongs_to
reflection.options[:foreign_key] || :"#{reflection.name}_id"
(reflection.respond_to?(:options) && reflection.options[:foreign_key]) || :"#{reflection.name}_id"
when :has_one
raise ":has_one associations are not supported by f.association"
else