9 lines
184 B
Ruby
9 lines
184 B
Ruby
class Contributions::ProjectsController < ApplicationController
|
|
before_action :authenticate_user!
|
|
|
|
# GET /contributions
|
|
def index
|
|
@current_section = :contributions
|
|
end
|
|
end
|