fa1c5f7279
and do some general cleanup around sessions controllers and the sign_in_as test helper
7 lines
155 B
Ruby
7 lines
155 B
Ruby
class SessionsController < ApplicationController
|
|
def destroy
|
|
terminate_session
|
|
redirect_to Launchpad.login_url, allow_other_host: true
|
|
end
|
|
end
|