summaryrefslogtreecommitdiff
path: root/app/controllers/groups/dependency_proxy_auth_controller.rb
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