blob: 7cd80e8b5e12e5a8b1f55351b482306175dd9f50 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# frozen_string_literal: true
class Admin::HealthCheckController < Admin::ApplicationController
def show
@errors = HealthCheck::Utils.process_checks(checks)
end
private
def checks
['standard']
end
end
|