Make Admin::HealthCheckController EE-compatible

Signed-off-by: Rémy Coutable <remy@rymai.me>
This commit is contained in:
Rémy Coutable 2018-12-17 17:44:00 +01:00
parent d82b6d120e
commit 8d3dc32438
No known key found for this signature in database
GPG Key ID: 98DFFD1C0C62B70B
1 changed files with 7 additions and 1 deletions

View File

@ -2,6 +2,12 @@
class Admin::HealthCheckController < Admin::ApplicationController
def show
@errors = HealthCheck::Utils.process_checks(['standard'])
@errors = HealthCheck::Utils.process_checks(checks)
end
private
def checks
['standard']
end
end