debian-mirror-gitlab/app/services/dependency_proxy/base_service.rb

28 lines
451 B
Ruby
Raw Normal View History

2021-01-29 00:20:46 +05:30
# frozen_string_literal: true
module DependencyProxy
class BaseService < ::BaseService
2021-02-22 17:27:13 +05:30
class DownloadError < StandardError
attr_reader :http_status
def initialize(message, http_status)
@http_status = http_status
super(message)
end
end
2021-01-29 00:20:46 +05:30
private
def registry
DependencyProxy::Registry
end
def auth_headers
{
Authorization: "Bearer #{@token}"
}
end
end
end