gitlab-org--gitlab-foss/lib/api/project_snapshots.rb

29 lines
751 B
Ruby

# frozen_string_literal: true
module API
class ProjectSnapshots < ::API::Base
helpers ::API::Helpers::ProjectSnapshotsHelpers
before { authorize_read_git_snapshot! }
feature_category :source_code_management
resource :projects do
desc 'Download a (possibly inconsistent) snapshot of a repository' do
detail 'This feature was introduced in GitLab 10.7'
success File
produces 'application/x-tar'
failure [
{ code: 401, message: 'Unauthorized' }
]
end
params do
optional :wiki, type: Boolean, desc: 'Set to true to receive the wiki repository'
end
get ':id/snapshot' do
send_git_snapshot(snapshot_repository)
end
end
end
end