view app/helpers/application_helper.rb @ 494:e508d3226214 default tip

Update gems
author nanaya <me@nanaya.net>
date Sun, 29 Oct 2023 23:24:13 +0900
parents 68231013b01b
children
line wrap: on
line source

module ApplicationHelper
  def html_title
    base_title = "Zeropaste"
    if content_for? :title
      "#{content_for(:title)} | #{h base_title}".html_safe
    else
      base_title
    end
  end

  def error_class(object, attribute)
    "is-invalid" if object.errors.include? attribute
  end

  def with_host(url)
    return url if url[0] != "/"

    "#{request.protocol}#{request.host_with_port}#{url}"
  end
end