Skip to content
代码片段 群组 项目

Feat: remove ai_features scope in access token

开放中 Wu Jeremy请求将feat/remove-ai-feature-scope-in-access-token合并到main-jh
+ 18
0
# frozen_string_literal: true
module JH
module Gitlab
module Auth
extend ActiveSupport::Concern
class_methods do
extend ::Gitlab::Utils::Override
override :available_scopes_for
def available_scopes_for(resource)
super - ::Gitlab::Auth::AI_FEATURES_SCOPES
end
end
end
end
end
加载中