osem-fcy/app/controllers/conference_controller.rb

6 lines
138 B
Ruby
Raw Normal View History

class ConferenceController < ApplicationController
def show
@conference = Conference.find_by_title(params[:conference_id])
end
end