summaryrefslogtreecommitdiff
path: root/app/controllers/admin/health_check_controller.rb
blob: 3153a765e35814d391fbc690ac74cb134b021983 (plain)
1
2
3
4
5
6
7
8
9
class Admin::HealthCheckController < Admin::ApplicationController
  def show
    begin
      @errors = HealthCheck::Utils.process_checks('standard')
    rescue => e
      @errors = e.message.blank? ? e.class.to_s : e.message.to_s
    end
  end
end