mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-11 10:06:53 +08:00
2a315ac106
SCI-4780 replace delete button with archive button
22 lines
563 B
Ruby
22 lines
563 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Repositories
|
|
class RestoreRepositoryService < ArchiveRepositoryBaseService
|
|
def call
|
|
return self unless valid?
|
|
|
|
ActiveRecord::Base.transaction do
|
|
@repositories.each do |repository|
|
|
repository.restore!(@user)
|
|
|
|
log_activity(:restore_inventory, repository)
|
|
end
|
|
rescue ActiveRecord::RecordNotSaved
|
|
@errors[:restoring_error] = I18n.t('repositories.restore_inventories.unsuccess_flash')
|
|
raise ActiveRecord::Rollback
|
|
end
|
|
|
|
self
|
|
end
|
|
end
|
|
end
|