Mercurial > zeropaste
view app/helpers/pastes_helper.rb @ 477:7a20b4906267
Update gems
| author | nanaya <me@nanaya.pro> |
|---|---|
| date | Sat, 10 Oct 2020 18:13:56 +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
