view app/helpers/pastes_helper.rb @ 254:bcca41003e84

Use postgres 'cuz mysql is shit. - utf8 isn't utf8 (hint: utf8mb4) - index key too loooooooooooong Nope.
author edogawaconan <me@myconan.net>
date Tue, 15 Oct 2013 01:47:19 +0900
parents 500c09718fd7
children 7c7b7906ebd9
line wrap: on
line source

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