8d3dc32438
Signed-off-by: Rémy Coutable <remy@rymai.me>
13 lines
222 B
Ruby
13 lines
222 B
Ruby
# frozen_string_literal: true
|
|
|
|
class Admin::HealthCheckController < Admin::ApplicationController
|
|
def show
|
|
@errors = HealthCheck::Utils.process_checks(checks)
|
|
end
|
|
|
|
private
|
|
|
|
def checks
|
|
['standard']
|
|
end
|
|
end
|