# frozen_string_literal: true class Admin::HealthCheckController < Admin::ApplicationController def show @errors = HealthCheck::Utils.process_checks(checks) end private def checks ['standard'] end end