Create view for splash page from existing routes

This commit is contained in:
Gopesh Tulsyan 2014-05-19 21:21:06 +05:30
parent e11ad83b32
commit 7a5f47257a
8 changed files with 39 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