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: 60b2371fa9a9af11dcf42ba84347de8a773ae325 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

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

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