mirror of
https://github.com/openSUSE/osem.git
synced 2026-05-18 21:46:17 -04:00
Due to my testing, I incorrectly removed the forgery protection skip action from the controllers in the api. This fixes that and allows jsonp calls to work correctly
22 lines
580 B
Ruby
22 lines
580 B
Ruby
module Api
|
|
module V1
|
|
class EventsController < Api::BaseController
|
|
load_resource :conference, find_by: :short_title
|
|
respond_to :json
|
|
|
|
# Disable forgery protection for any json requests. This is required for jsonp support
|
|
skip_before_action :verify_authenticity_token
|
|
|
|
def index
|
|
events = Event.includes(:track, :event_type, event_users: :user)
|
|
|
|
if @conference
|
|
events = events.where(program: @conference.program)
|
|
end
|
|
|
|
respond_with events.confirmed, callback: params[:callback]
|
|
end
|
|
end
|
|
end
|
|
end
|