[feat] happening_now json endpoint returns event embedded in event_schedule

This commit is contained in:
Jimmy 2021-03-20 13:34:14 +08:00
parent 1ab580e7e6
commit bfc39fdbe4

View file

@ -75,7 +75,7 @@ class SchedulesController < ApplicationController
respond_to do |format|
format.html
format.json { render json: @events_schedules.to_json }
format.json { render json: @events_schedules.as_json(:include => :event) }
end
end