Well, using custom params in event.source['content'] dict we can implement reaction-actions system, which will be do action on specific reaction from specific (or not) user.
I guess we need to add Listener.on_action(ctx: Context) listener, add Context.action parameter and add **params parameter into all sending methods in Bot. With that we can include any custom data in sending event and add something like that:
{
"content" : {
...
"org.mxbt.custom" : {
"👍" : {
"action" : "kick"
}
}
}
}
Well, using custom params in `event.source['content']` dict we can implement reaction-actions system, which will be do action on specific reaction from specific (or not) user.
I guess we need to add `Listener.on_action(ctx: Context)` listener, add Context.action parameter and add `**params` parameter into all sending methods in `Bot`. With that we can include any custom data in sending event and add something like that:
```json
{
"content" : {
...
"org.mxbt.custom" : {
"👍" : {
"action" : "kick"
}
}
}
}
```