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