Merge pull request #14 from beatriceo/redirection
edited routes to redirect to correct pages upon sign up
This commit is contained in:
commit
3dfbc577b6
|
@ -2,4 +2,8 @@ class ApplicationController < ActionController::Base
|
|||
protect_from_forgery with: :exception
|
||||
# before_action :authenticate_user!
|
||||
protect_from_forgery unless: -> { request.format.json? } # Only accept json
|
||||
|
||||
def after_sign_in_path_for(resource)
|
||||
contacts_path
|
||||
end
|
||||
end
|
||||
|
|
|
@ -4,7 +4,15 @@ Rails.application.routes.draw do
|
|||
devise_scope :user do
|
||||
get '/logout', to: 'devise/sessions#destroy'
|
||||
end
|
||||
root to: 'pages#home'
|
||||
|
||||
authenticated :user do
|
||||
root to: "pages#index"
|
||||
end
|
||||
|
||||
unauthenticated :user do
|
||||
root to: "pages#home"
|
||||
end
|
||||
|
||||
get '/contacts', to: 'pages#index'
|
||||
post '/sessions', to: 'video_sessions#create'
|
||||
|
||||
|
|
Loading…
Reference in New Issue