debian-mirror-gitlab/app/controllers/groups/dependency_proxy_auth_controller.rb
2021-02-22 17:27:13 +05:30

12 lines
233 B
Ruby

# frozen_string_literal: true
class Groups::DependencyProxyAuthController < ApplicationController
include DependencyProxy::Auth
feature_category :dependency_proxy
def authenticate
render plain: '', status: :ok
end
end