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

class Groups::DependencyProxyAuthController < ApplicationController
  include DependencyProxy::Auth

  feature_category :dependency_proxy

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