osem-fcy/app/controllers/conferences_controller.rb
2014-05-08 08:33:05 +05:30

5 lines
132 B
Ruby

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