view app/helpers/pastes_helper.rb @ 437:d31fe32da7a0

Finish updating to rails 5
author nanaya <me@myconan.net>
date Sat, 02 Jul 2016 17:04:25 +0900
parents 68eb23b52864
children e8f159807413
line wrap: on
line source

module PastesHelper
  def print_txt_create_result
    if @paste.errors.any?
      "Failed"
    else
      url = with_url paste_path(@paste)
      if @fresh
        "#{url} (key: #{@paste.key})"
      else
        url
      end
    end
  end

  def paste_privacy_options
    { "public" => "0", "private" => "1" }
  end
end