2015-10-08 02:34:19 +03:00
|
|
|
class Api::SpeakersController < Api::ApplicationController
|
|
|
|
include ::CurrentConferenceAssigning
|
2016-11-04 15:34:44 +02:00
|
|
|
include ::PublicApiExposing
|
2019-04-28 02:15:39 +03:00
|
|
|
before_action :require_current_conference!
|
2015-10-08 02:34:19 +03:00
|
|
|
|
|
|
|
def index
|
2016-10-24 18:51:16 +03:00
|
|
|
@speakers = PersonalProfile.joins(user: {participations: {event: :proposition}}).where(events: {id: current_conference.approved_events.pluck(:id)}, conference: current_conference).distinct
|
2015-10-08 02:34:19 +03:00
|
|
|
end
|
|
|
|
end
|