ブランドには多くのイメージがありますが、私の協会です。画像はクリップを使用しています
Rails Admin で、ブランドを追加するときに画像を追加したい
class Brand < ActiveRecord:Base
has_many :images, as=> :imageable
end
class Image < ActiveRecord:Base
attr_accessor :image_thumb
attr_accessible :image, :imageable_id, :imageable_type, :image_thumb
has_attached_file :image, :styles => { :medium => "300x300>", :thumb => "100x100>" }
belongs_to :imageable, :polymorphic => true
end
しかし、これは私が得るものです
どうすれば目標を達成できますか?