9 lines
227 B
Ruby
9 lines
227 B
Ruby
# frozen_string_literal: true
|
|
|
|
class Groups::DependencyProxyAuthController < ::Groups::DependencyProxy::ApplicationController
|
|
feature_category :dependency_proxy
|
|
|
|
def authenticate
|
|
render plain: '', status: :ok
|
|
end
|
|
end
|