Introduces components for tabbed navigation and adds a tab menu and item for non-financial contributions to the donations/contributions page.
9 lines
188 B
Ruby
9 lines
188 B
Ruby
class Contributions::ProjectsController < ApplicationController
|
|
before_action :require_user_signed_in
|
|
|
|
# GET /contributions
|
|
def index
|
|
@current_section = :contributions
|
|
end
|
|
end
|