class User
include Mongoid::Document
has_many :images
accepts_nested_attributes_for :image
end
class Image
include Mongoid::Document
include Mongoid::Timestamps
include Mongoid::Paperclip
has_mongoid_attached_file :uploaded_image,
:path => ":rails_root/public/uploads/:class/:id/:basename.:extension",
:url => "public/uploads/"
validates_attachment_content_type :uploaded_file, :content_type => "application/png", :message => "error massage"
belongs_to :user
delegate :url, :path, to: :uploaded_image, allow_nil: true, prefix: false
end
How to delegate errors from Image to User if :uploaded_image is invalid?
For example:
user_image = user.images.build(uploaded_image: new_image.path)
user_image.save
Should rise a error if uploaded_image is invalid.
Rails has the
validates_associated
helper (also available in Mongoid) which will callvalid?
upon each one of the associated objects.Note that you should not add
validates_associated :user
toImage
since it would cause an infinite loop.You can access the errors for the nested images like so: