mysociety/alaveteli

View on GitHub
app/helpers/health_checks_helper.rb

Summary

Maintainability
A
0 mins
Test Coverage
module HealthChecksHelper
  def check_status(check)
    style = check.ok? ? '' : 'color: red'
    content_tag(:b, check.message, style: style)
  end
end