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

@ -1,5 +1,7 @@
Osem::Application.routes.draw do
get 'conference/show'
devise_for :users, :controllers => { :registrations => :registrations }, :path => 'accounts'
namespace :admin do
@ -66,7 +68,7 @@ Osem::Application.routes.draw do
end
end
resources :conference, :only => [] do
resources :conference, only: [:show] do
resources :proposal do
resources :event_attachment, :controller => "event_attachments"
patch "/confirm" => "proposal#confirm"