Skip to content
This repository has been archived by the owner on May 16, 2019. It is now read-only.

Commit

Permalink
Revert "feat(auth/session_controller): Send Clear-Site-Data when logg…
Browse files Browse the repository at this point in the history
…ing out (8627)" (mastodon#9161)

This reverts commit 10680f9.
  • Loading branch information
Gargron authored Oct 30, 2018
1 parent c36a4a1 commit 5c8e7f0
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions app/controllers/auth/sessions_controller.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ class Auth::SessionsController < Devise::SessionsController
prepend_before_action :authenticate_with_two_factor, if: :two_factor_enabled?, only: [:create]
before_action :set_instance_presenter, only: [:new]
before_action :set_body_classes
after_action :clear_site_data, only: [:destroy]

def new
Devise.omniauth_configs.each do |provider, config|
Expand Down Expand Up @@ -125,14 +124,6 @@ def home_paths(resource)
paths
end

def clear_site_data
return if continue_after?

# Should be '"*"' but that doesn't work in Chrome (neither does '"executionContexts"')
# https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Clear-Site-Data
response.headers['Clear-Site-Data'] = '"cache", "cookies", "storage"'
end

def continue_after?
truthy_param?(:continue)
end
Expand Down

0 comments on commit 5c8e7f0

Please sign in to comment.