Get the cookies for the current callback. Works with background callbacks.
(self)
| 273 | @property |
| 274 | @has_context |
| 275 | def cookies(self): |
| 276 | """ |
| 277 | Get the cookies for the current callback. |
| 278 | Works with background callbacks. |
| 279 | """ |
| 280 | return _get_from_context("cookies", {}) |
| 281 | |
| 282 | @property |
| 283 | @has_context |
nothing calls this directly
no test coverage detected