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