Mercurial > zeropaste
view app/helpers/pastes_helper.rb @ 444:1201c7566845
Update gems
author | nanaya <me@myconan.net> |
---|---|
date | Thu, 12 Jan 2017 21:24:31 +0900 |
parents | e8f159807413 |
children |
line wrap: on
line source
module PastesHelper def print_txt_create_result if @paste.errors.any? "Failed" else url = with_host paste_path(@paste) if @fresh "#{url} (key: #{@paste.key})" else url end end end def paste_privacy_options { "public" => "0", "private" => "1" } end end