osem-fcy/app/controllers/conferences_controller.rb

6 lines
132 B
Ruby
Raw Normal View History

class ConferencesController < ApplicationController
def show
2014-05-08 08:33:05 +05:30
@conference = Conference.find_by_title(params[:format])
end
end