bugfix devise

This commit is contained in:
Ethan Fraenkel
2018-08-28 15:46:15 +02:00
parent fb0143a20b
commit 3d44276105
3 changed files with 6 additions and 3 deletions

View File

@@ -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

View File

@@ -1,5 +1,5 @@
class PagesController < ApplicationController
skip_before_action :authenticate_user!, only: [:call]
# skip_before_action :authenticate_user!, only: [:call]
def call
end