Welcome to mirror list, hosted at ThFree Co, Russian Federation.

health_check_controller.rb « admin « controllers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: caf4c138da802f3071c6c3f5f579b949355269d2 (plain)
1
2
3
4
5
class Admin::HealthCheckController < Admin::ApplicationController
  def show
    @errors = HealthCheck::Utils.process_checks(['standard'])
  end
end