osem-fcy/app/controllers/conference_controller.rb
2014-05-26 17:42:17 +05:30

6 lines
225 B
Ruby

class ConferenceController < ApplicationController
def show
@conference = Conference.find_by_short_title(params[:id])
@keynote_speakers = @conference.registrations.joins(:person).where('featured=?', true)
end
end