Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dependency_proxy_auth_controller.rb « groups « controllers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 03579d62ba996aec303fa8bc09c2f5327e161ce3 (plain)
1
2
3
4
5
6
7
8
9
10
# frozen_string_literal: true

class Groups::DependencyProxyAuthController < ::Groups::DependencyProxy::ApplicationController
  feature_category :dependency_proxy
  urgency :low

  def authenticate
    render plain: '', status: :ok
  end
end