Create Splash Page using existing routes as Conference#Show

This commit is contained in:
Gopesh Tulsyan 2014-05-14 13:16:08 +05:30
parent 5f6ab4f7ee
commit 1c152c87ab
6 changed files with 90 additions and 49 deletions

View file

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