7 lines
180 B
Ruby
7 lines
180 B
Ruby
# frozen_string_literal: true
|
|
|
|
class Admin::HealthCheckController < Admin::ApplicationController
|
|
def show
|
|
@errors = HealthCheck::Utils.process_checks(['standard'])
|
|
end
|
|
end
|