trabajo-afectivo/app/controllers/concerns/clones_ticket_article_attachments.rb

15 lines
431 B
Ruby
Raw Permalink Normal View History

2022-01-01 13:38:12 +00:00
# Copyright (C) 2012-2022 Zammad Foundation, https://zammad-foundation.org/
2017-08-28 21:31:26 +00:00
module ClonesTicketArticleAttachments
extend ActiveSupport::Concern
private
def article_attachments_clone(article)
raise Exceptions::UnprocessableEntity, __("Need 'form_id' to add attachments to new form.") if params[:form_id].blank?
2017-08-28 21:31:26 +00:00
article.clone_attachments('UploadCache', params[:form_id], only_attached_attachments: true)
2017-08-28 21:31:26 +00:00
end
end