impress/app/controllers/static_controller.rb
2014-09-10 15:38:26 -05:00

6 lines
180 B
Ruby

class StaticController < ApplicationController
def donate
# TODO: scope by campaign?
@donations = Donation.includes(features: :outfit).order('created_at DESC')
end
end