You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
414 B
22 lines
414 B
# frozen_string_literal: true
|
|
|
|
class Admin::SystemCheck
|
|
ACTIVE_CHECKS = [
|
|
Admin::SystemCheck::DatabaseSchemaCheck,
|
|
Admin::SystemCheck::SidekiqProcessCheck,
|
|
Admin::SystemCheck::RulesCheck,
|
|
].freeze
|
|
|
|
def self.perform
|
|
ACTIVE_CHECKS.each_with_object([]) do |klass, arr|
|
|
check = klass.new
|
|
|
|
if check.pass?
|
|
arr
|
|
else
|
|
arr << check.message
|
|
end
|
|
end
|
|
end
|
|
end
|