Files
grecia/app/controllers/concerns/document_attributes.rb
2021-04-09 16:21:00 +02:00

8 lines
167 B
Ruby

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