akkounts/app/controllers/contributions/donations_controller.rb
Râu Cao b5b43c2c06
Change donations to contrbutions, add tabbed nav
Introduces components for tabbed navigation and adds a tab menu and item
for non-financial contributions to the donations/contributions page.
2022-12-12 14:05:31 +01:00

11 lines
259 B
Ruby

class Contributions::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