Skip to content

Instantly share code, notes, and snippets.

@giacope
Created November 1, 2021 09:51
Show Gist options
  • Select an option

  • Save giacope/8c8c130d6a13fc218920be0947718b47 to your computer and use it in GitHub Desktop.

Select an option

Save giacope/8c8c130d6a13fc218920be0947718b47 to your computer and use it in GitHub Desktop.
πŸͺ Rails Skip Cookies
class ApplicationController < ActionController::Base
after_action :skip_cookies
def skip_cookies
request.session_options[:skip] = true
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment