aboutsummaryrefslogtreecommitdiffstats
path: root/app/controllers/health_checks_controller.rb
blob: 473a1aaccd83d73959628317fc502ba5388af46e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
class HealthChecksController < ApplicationController

  def index
    @health_checks = HealthChecks.all

    respond_to do |format|
      if HealthChecks.ok?
        format.html  { render :action => :index, :layout => false }
      else
        format.html  { render :action => :index, :layout => false , :status => 500 }
      end
    end

  end

end