forked from fixin.me/fixin.me
10 lines
176 B
Ruby
10 lines
176 B
Ruby
class ApplicationController < ActionController::Base
|
|
before_action :authenticate_user!
|
|
|
|
protected
|
|
|
|
def after_sign_out_path_for(scope)
|
|
new_user_session_path
|
|
end
|
|
end
|