I'm using paperclip to attach photos to one of my models:
class User < ActiveRecord::Base
has_many :photos
accepts_nested_attributes_for :photos
end
class Photo < ActiveRecord::Base
belongs_to :user
has_attached_file :data
end
How can I use reject_if to ignore data fields to which files are not uploaded by users?