18F/identity-idp

View on GitHub
app/controllers/health/outbound_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
# frozen_string_literal: true

module Health
  # Checks outbound network connections
  class OutboundController < AbstractHealthController
    private

    def health_checker
      OutboundHealthChecker
    end
  end
end