1
0
Fork 0
forked from OpenNeo/impress
impress/app/helpers/static_helper.rb

10 lines
152 B
Ruby
Raw Normal View History

2011-06-28 10:24:40 -07:00
module StaticHelper
def large_donation?(amount)
amount > 100_00
end
def outfit_image?(outfit)
outfit.present? && outfit.image?
end
2011-06-28 10:24:40 -07:00
end