osem-fcy/app/controllers/conference_controller.rb
2014-05-08 23:35:03 +05:30

5 lines
127 B
Ruby

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