osem-fcy/app/controllers/conference_controller.rb

6 lines
127 B
Ruby
Raw Normal View History

class ConferenceController < ApplicationController
def show
2014-05-08 23:35:03 +05:30
@conference = Conference.find_by_title(params[:id])
end
end