bugfix devise
This commit is contained in:
parent
fb0143a20b
commit
3d44276105
|
@ -1,5 +1,5 @@
|
|||
class ApplicationController < ActionController::Base
|
||||
protect_from_forgery with: :exception
|
||||
before_action :authenticate_user!
|
||||
# before_action :authenticate_user!
|
||||
protect_from_forgery unless: -> { request.format.json? } # Only accept json
|
||||
end
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
class PagesController < ApplicationController
|
||||
skip_before_action :authenticate_user!, only: [:call]
|
||||
# skip_before_action :authenticate_user!, only: [:call]
|
||||
|
||||
def call
|
||||
end
|
||||
|
|
|
@ -1,6 +1,9 @@
|
|||
Rails.application.routes.draw do
|
||||
get 'video_sessions/create'
|
||||
devise_for :users
|
||||
devise_for :users, path: '', path_names: { sign_out: 'logout'}
|
||||
devise_scope :user do
|
||||
get '/logout', to: 'devise/sessions#destroy'
|
||||
end
|
||||
root to: 'pages#home'
|
||||
get '/contacts', to: 'users#index'
|
||||
post '/sessions', to: 'video_sessions#create'
|
||||
|
|
Loading…
Reference in New Issue