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

9 lines
184 B
Ruby

class Contributions::ProjectsController < ApplicationController
before_action :authenticate_user!
# GET /contributions
def index
@current_section = :contributions
end
end