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