2021-02-22 17:27:13 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2021-10-27 15:23:28 +05:30
|
|
|
class Groups::DependencyProxyAuthController < ::Groups::DependencyProxy::ApplicationController
|
2021-02-22 17:27:13 +05:30
|
|
|
feature_category :dependency_proxy
|
2022-07-16 23:28:13 +05:30
|
|
|
urgency :low
|
2021-02-22 17:27:13 +05:30
|
|
|
|
|
|
|
def authenticate
|
|
|
|
render plain: '', status: :ok
|
|
|
|
end
|
|
|
|
end
|