18F/identity-idp

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

Summary

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

module Health
  class DatabaseController < AbstractHealthController
    private

    def health_checker
      DatabaseHealthChecker
    end
  end
end