Merge pull request #148 from gopesht/splash_page

Create view for splash page from existing routes
This commit is contained in:
Gopesh Tulsyan 2014-05-20 19:39:23 +05:30
commit 322ddd1501
8 changed files with 37 additions and 1 deletions

View file

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