This commit is contained in:
Gopesh Tulsyan 2014-05-19 15:03:52 +00:00
commit 830193bdca
6 changed files with 26 additions and 2 deletions

View file

@ -0,0 +1,5 @@
class ConferenceController < ApplicationController
def show
@conference = Conference.find_by_short_title(params[:id])
end
end