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

Merge pull request #417 from nyjt/patch-1

Mongoid compatibility improvement in belongs_to case
This commit is contained in:
José Valim 2012-01-25 06:30:18 -08:00
commit 75a6ff6b78

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