osem-fcy/app/controllers/conference_controller.rb

8 lines
143 B
Ruby
Raw Normal View History

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