9 lines
162 B
Ruby
9 lines
162 B
Ruby
module ImageAttributes
|
|
extend ActiveSupport::Concern
|
|
|
|
def image_attributes
|
|
[:id, :title, :attachment, :cached_attachment, :user_id, :_destroy]
|
|
end
|
|
|
|
end
|