1
0
Fork 0
forked from OpenNeo/impress
impress/app/controllers/static_controller.rb

7 lines
180 B
Ruby
Raw Normal View History

2010-11-05 15:55:27 -07:00
class StaticController < ApplicationController
2014-09-10 13:38:26 -07:00
def donate
# TODO: scope by campaign?
@donations = Donation.includes(features: :outfit).order('created_at DESC')
end
2010-11-05 15:55:27 -07:00
end