8 lines
171 B
Ruby
8 lines
171 B
Ruby
|
module Public
|
||
|
class VolunteerTeamsController < Public::ApplicationController
|
||
|
def index
|
||
|
@volunteer_teams = current_conference.volunteer_teams
|
||
|
end
|
||
|
end
|
||
|
end
|