akkounts/app/controllers/donations_controller.rb
Sebastian Kippe 40f3e8327a
Basic donation records
Adds donation model/table and basic manual management in the admin
panel, as well as basic listing of users' own donations.
2020-12-17 21:56:51 +01:00

10 lines
196 B
Ruby

class DonationsController < ApplicationController
before_action :require_user_signed_in
# GET /donations
# GET /donations.json
def index
@donations = current_user.donations
end
end