Limit the personal profiles to the current conference
This commit is contained in:
parent
b679efbd2b
commit
4d93de0e21
|
@ -3,6 +3,6 @@ class Api::SpeakersController < Api::ApplicationController
|
|||
before_filter :require_current_conference!
|
||||
|
||||
def index
|
||||
@speakers = PersonalProfile.joins(user: {participations: {event: :proposition}}).where(events: {id: current_conference.approved_events.pluck(:id)}).distinct
|
||||
@speakers = PersonalProfile.joins(user: {participations: {event: :proposition}}).where(events: {id: current_conference.approved_events.pluck(:id)}, conference: current_conference).distinct
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue