clarion/app/controllers/public/volunteer_teams_controller.rb

8 lines
171 B
Ruby

module Public
class VolunteerTeamsController < Public::ApplicationController
def index
@volunteer_teams = current_conference.volunteer_teams
end
end
end