11 lines
244 B
Ruby
11 lines
244 B
Ruby
class DonationsController < ApplicationController
|
|
before_action :require_user_signed_in
|
|
|
|
# GET /donations
|
|
# GET /donations.json
|
|
def index
|
|
@donations = current_user.donations.completed
|
|
@current_section = :contributions
|
|
end
|
|
end
|