Files
gitlab-foss/lib/gitlab/checks/integrations_check.rb
2024-03-22 21:17:19 +00:00

14 lines
300 B
Ruby

# frozen_string_literal: true
module Gitlab
module Checks
class IntegrationsCheck < ::Gitlab::Checks::BaseBulkChecker
def validate!
::Gitlab::Checks::Integrations::BeyondIdentityCheck.new(self).validate!
end
end
end
end
Gitlab::Checks::IntegrationsCheck.prepend_mod