clarion/app/controllers/public/volunteer_teams_controller.rb

8 lines
171 B
Ruby
Raw Normal View History

2015-10-21 23:20:04 +03:00
module Public
class VolunteerTeamsController < Public::ApplicationController
def index
@volunteer_teams = current_conference.volunteer_teams
end
end
end