2022-01-01 13:38:12 +00:00
|
|
|
# Copyright (C) 2012-2022 Zammad Foundation, https://zammad-foundation.org/
|
2021-06-01 12:20:20 +00:00
|
|
|
|
2017-08-28 21:31:26 +00:00
|
|
|
module ClonesTicketArticleAttachments
|
|
|
|
extend ActiveSupport::Concern
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def article_attachments_clone(article)
|
2022-01-18 12:52:57 +00:00
|
|
|
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
|
|
|
|
2019-02-10 08:40:55 +00:00
|
|
|
article.clone_attachments('UploadCache', params[:form_id], only_attached_attachments: true)
|
2017-08-28 21:31:26 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|