Mercurial > zeropaste
view app/helpers/pastes_helper.rb @ 331:7c7b7906ebd9
Some more coding style.
author | edogawaconan <me@myconan.net> |
---|---|
date | Mon, 14 Apr 2014 17:21:16 +0900 |
parents | 500c09718fd7 |
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