20 lines
581 B
Ruby
20 lines
581 B
Ruby
# frozen_string_literal: true
|
|
|
|
class ImportExportUpload < ApplicationRecord
|
|
include WithUploads
|
|
include ObjectStorage::BackgroundMove
|
|
|
|
belongs_to :project
|
|
belongs_to :group
|
|
|
|
# These hold the project Import/Export archives (.tar.gz files)
|
|
mount_uploader :import_file, ImportExportUploader
|
|
mount_uploader :export_file, ImportExportUploader
|
|
|
|
scope :updated_before, ->(date) { where('updated_at < ?', date) }
|
|
scope :with_export_file, -> { where.not(export_file: nil) }
|
|
|
|
def retrieve_upload(_identifier, paths)
|
|
Upload.find_by(model: self, path: paths)
|
|
end
|
|
end
|