cleanup controllers and routes

This commit is contained in:
Zachary Chai
2016-10-25 10:46:30 -04:00
parent d3ad6980d9
commit f71f46427f
2 changed files with 7 additions and 27 deletions

View File

@ -1,20 +1,15 @@
Rails.application.routes.draw do
resources :users, only: [:edit, :update]
# This should be removed once before being released
get '/auth/:provider/callback', to: 'sessions#create'
###########################################################
get '/users/auth/:provider/callback', to: 'sessions#create'
get '/users/logout', to: 'sessions#destroy', as: :user_logout
get '/meetings/join/:resource/:id', to: 'bbb#join', as: :bbb_join
get '/meetings/new', to: 'landing#new_meeting', as: :new_meeting
get '/auth/:provider/callback', to: 'sessions#create'
# There are two resources [meetings|rooms]
# meetings offer a landing page for NON authenticated users to create and join session in BigBlueButton
# rooms offer a customized landing page for authenticated users to create and join session in BigBlueButton
get '/:resource(/:id)', to: 'landing#index', as: :resource
get '/:resource/:id/join', to: 'bbb#join', as: :bbb_join
root to: 'landing#meeting', :resource => "meetings"
root to: 'landing#index', :resource => "meetings"
# For details on the DSL available within this file, see http://guides.rubyonrails.org/routing.html
end