madebyhiro/codem-schedule

View on GitHub
app/helpers/hosts_helper.rb

Summary

Maintainability
A
0 mins
Test Coverage
module HostsHelper
  def host_name(host)
    return nil unless host

    if host.name.nil?
      host.url
    else
      "#{host.name} (<span class=\"address\">#{host.url}</span>)".html_safe
    end
  end
end