diff --git a/app/controllers/application_controller.rb b/app/controllers/application_controller.rb index 4ea1fc7..e58114e 100644 --- a/app/controllers/application_controller.rb +++ b/app/controllers/application_controller.rb @@ -25,8 +25,8 @@ def basic_profile_info @basic_profile_info ||= retro_meet_client.basic_profile_info.value if authenticated? rescue RetroMeet::Core::UnauthorizedError flash.now[:warn] = t("forced_log_out") - terminate_session - redirect_to :root + # terminate_session + # redirect_to :root end # @return [nil,RetroMeet::Core::Client] diff --git a/app/controllers/concerns/authentication.rb b/app/controllers/concerns/authentication.rb index 0673dd8..f19834e 100644 --- a/app/controllers/concerns/authentication.rb +++ b/app/controllers/concerns/authentication.rb @@ -64,7 +64,7 @@ def start_new_session_for(token_credentials) # Logs out from retro meet core and removes the session cookie # @return [void] def terminate_session - retro_meet_client.logout - cookies.delete(:session) + # retro_meet_client.logout + # cookies.delete(:session) end end