akkounts/app/controllers/donations_controller.rb
Sebastian Kippe c62ce00184
Add main navigation bar
Make donations and invitations accessible to everyone
2020-12-27 14:03:40 +01:00

11 lines
245 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