Class: Common::Client::Middleware::Request::RemoveCookies
- Inherits:
-
Faraday::Middleware
- Object
- Faraday::Middleware
- Common::Client::Middleware::Request::RemoveCookies
- Defined in:
- lib/common/client/middleware/request/remove_cookies.rb
Overview
must be added right before http_client adapter
Instance Method Summary collapse
Instance Method Details
#call(env) ⇒ Object
9 10 11 12 13 |
# File 'lib/common/client/middleware/request/remove_cookies.rb', line 9 def call(env) client = @app.build_connection(env) client. = nil @app.call(env) end |