view app/helpers/pastes_helper.rb @ 373:6e3e1e7b0212

Handle unique error in model instead of controller.
author nanaya <me@myconan.net>
date Sat, 06 Jun 2015 22:12:56 +0900
parents 7c7b7906ebd9
children 2ddd61aca2c8
line wrap: on
line source

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