debian-mirror-gitlab/app/controllers/groups/dependency_proxy_auth_controller.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
242 B
Ruby
Raw Normal View History

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