Files
nairobi/app/controllers/concerns/image_attributes.rb
2019-01-14 20:26:47 +01:00

9 lines
162 B
Ruby

module ImageAttributes
extend ActiveSupport::Concern
def image_attributes
[:id, :title, :attachment, :cached_attachment, :user_id, :_destroy]
end
end