clarion/app/controllers/api/events_controller.rb

9 lines
230 B
Ruby
Raw Normal View History

class Api::EventsController < Api::ApplicationController
include ::CurrentConferenceAssigning
before_filter :require_current_conference!
def index
@events = current_conference.events.includes(:participations)
end
end