comparison app/helpers/pastes_helper.rb @ 180:dd5a154c17c7

Extracted txt result template to helper.
author Edho Arief <edho@myconan.net>
date Fri, 01 Feb 2013 22:57:49 +0700
parents 42de15334db1
children 500c09718fd7
comparison
equal deleted inserted replaced
179:b1aa7865bc7f 180:dd5a154c17c7
1 module PastesHelper 1 module PastesHelper
2 def print_txt_create_result
3 unless @paste.errors.any?
4 url = paste_path @paste, :only_path => false
5 "#{url} (key: #{@paste.key})"
6 else
7 'Failed'
8 end
9 end
2 end 10 end