akkounts/app/controllers/contributions/donations_controller.rb
2023-05-31 12:00:02 +02:00

11 lines
255 B
Ruby

class Contributions::DonationsController < ApplicationController
before_action :authenticate_user!
# GET /donations
# GET /donations.json
def index
@donations = current_user.donations.completed
@current_section = :contributions
end
end