mirror of
https://github.com/aiogram/aiogram.git
synced 2026-04-08 16:37:47 +00:00
Added changelog
This commit is contained in:
parent
8345a8fa69
commit
e23839aa6c
1 changed files with 17 additions and 0 deletions
17
CHANGES/1161.feature.rst
Normal file
17
CHANGES/1161.feature.rst
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
Added support for FSM in Forum topics.
|
||||
|
||||
The strategy can be changed in dispatcher:
|
||||
|
||||
.. code-block:: python
|
||||
|
||||
from aiogram.fsm.strategy import FSMStrategy
|
||||
...
|
||||
dispatcher = Dispatcher(
|
||||
fsm_strategy=FSMStrategy.USER_IN_THREAD,
|
||||
storage=..., # Any persistent storage
|
||||
)
|
||||
|
||||
.. note::
|
||||
|
||||
If you have implemented you own storages you should extend record key generation
|
||||
with new one attribute - `thread_id`
|
||||
Loading…
Add table
Add a link
Reference in a new issue