Files
fizzy/app/controllers/sessions_controller.rb
T
Mike Dalessio fa1c5f7279 Remove session controller actions other than delete
and do some general cleanup around sessions controllers and the
sign_in_as test helper
2025-07-02 15:03:28 -04:00

7 lines
155 B
Ruby

class SessionsController < ApplicationController
def destroy
terminate_session
redirect_to Launchpad.login_url, allow_other_host: true
end
end