about summary refs log tree commit diff stats
path: root/app/controllers/application_controller.rb
blob: 0174caedceda64b838d7dc5d80025b4c871149b9 (plain) (blame)
1
2
3
4
5
6
7
8
9
class ApplicationController < ActionController::Base
  protect_from_forgery with: :exception

  private

    def after_sign_out_path_for(resource)
      new_session_path(resource)
    end
end