- #100 add documentation for new typing node and update README

- #100 fix typing event causing server error due to number being string
- Mention using pantalaimon as an alternative for E2EE support in README
This commit is contained in:
2023-10-22 16:56:49 -06:00
parent 785e0cd7be
commit d7c4bc26bb
6 changed files with 147 additions and 2 deletions
+10
View File
@@ -24,6 +24,7 @@ Build something cool with these nodes? Feel free to submit a pull request to sha
- [Respond to "rooms <user_id>" with user's rooms (list server's rooms if <user_id> is left blank)](#respond-to-rooms-user_id-with-users-rooms-list-servers-rooms-if-user_id-is-left-blank)
- [Respond to "whois <user_id>" with information about the user's session](#respond-to-whois-user_id-with-information-about-the-users-session)
- [Respond to "room_users" with current room's users](#respond-to-room_users-with-current-rooms-users)
- [Sending typing events to a room](#sending-typing-events-to-a-room)
- [Download & store all received files/images](#download--store-all-received-filesimages)
- [Kick/Ban user from room](#kickban-user-from-room)
- [Deactivate user](#deactivate-user)
@@ -221,6 +222,15 @@ Note: You may need to edit the storage directory for this to work. Default actio
![store-received-files.png](store-received-files.png)
### Sending typing events to a room
[View JSON](send-typing-events.json)
You can tell a room that Node-RED is writing a message and also cancel the writing event. This can be useful for making bots feel more interactive (show typing while requesting API endpoint for example).
![store-received-files.png](send-typing-events.png)
### Kick/Ban user from room
[View JSON](room-kick-ban.json)