osem-fcy/app/controllers/conferences_controller.rb

5 lines
132 B
Ruby

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