Files
fixin.me/app/controllers/application_controller.rb
2023-04-15 23:52:40 +02:00

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