Dmitry

Results 2 issues of Dmitry

Don't work with RedirectResponse, HtmlResponse, because you can't add cookie to response (example: `response.set_cookie(key="fakesession", value="fake-cookie-session-value")`). Solution: set `cookie.attach_to_response(response, session)` after response. Example: ``` response = templates.TemplateResponse("auth.html", {"request": request }) cookie.attach_to_response(response,...

Hello! I try to add options `options={'decimal_places': decimal_places}` in history_rate func, but it's add it to ops dict, not to 'qs'. When i change `ops.update(options)` to `ops['qs'].update(options)` it start work...