mirror of
https://github.com/Skylar-Tech/node-red-contrib-matrix-chat.git
synced 2025-04-20 13:03:12 -06:00
- change all references from msg.roomId to msg.topic to conform to Node-RED standards. - Added node for listing Synapse users server-wide (as long as the caller is an admin) - Events for Room.timeline are now handled by the server-config node and node's that listen for it bind a listener to that instead of the matrix client. - Added kick and ban nodes for kicking/banning from a room - Added node for fetching synapse user list using synapse admin API - Added node for fetching whois data from a user using Matrix admin API - Added node for deactivating users using the Synapse admin API - Can register users using the Synapse admin endpoint v1 (yay legacy) - Can add users using the Synapse admin endpoint v2 - Add more info to the readme.
45 lines
1.4 KiB
JSON
45 lines
1.4 KiB
JSON
{
|
|
"name": "node-red-contrib-matrix-chat",
|
|
"version": "0.0.5",
|
|
"description": "Matrix chat server client for Node-RED",
|
|
"dependencies": {
|
|
"got": "^11.8.2",
|
|
"matrix-js-sdk": "^12.2.0",
|
|
"utf8": "^3.0.0"
|
|
},
|
|
"node-red": {
|
|
"nodes": {
|
|
"matrix-server-config": "src/matrix-server-config.js",
|
|
"matrix-receive": "src/matrix-receive.js",
|
|
"matrix-send-message": "src/matrix-send-message.js",
|
|
"matrix-send-file": "src/matrix-send-file.js",
|
|
"matrix-send-image": "src/matrix-send-image.js",
|
|
"matrix-react": "src/matrix-react.js",
|
|
"matrix-room-kick": "src/matrix-room-kick.js",
|
|
"matrix-room-ban": "src/matrix-room-ban.js",
|
|
"matrix-synapse-users": "src/matrix-synapse-users.js",
|
|
"matrix-synapse-register": "src/matrix-synapse-register.js",
|
|
"matrix-synapse-create-edit-user": "src/matrix-synapse-create-edit-user.js",
|
|
"matrix-synapse-deactivate-user": "src/matrix-synapse-deactivate-user.js",
|
|
"matrix-whois-user": "src/matrix-whois-user.js",
|
|
"matrix-room-users": "src/matrix-room-users.js"
|
|
}
|
|
},
|
|
"keywords": [
|
|
"node-red",
|
|
"matrix",
|
|
"support",
|
|
"bot",
|
|
"chat"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/skylar-tech/node-red-contrib-matrix-chat"
|
|
},
|
|
"author": {
|
|
"name": "Skylar Sadlier",
|
|
"url": "https://skylar.tech"
|
|
},
|
|
"license": "SEE LICENSE FILE"
|
|
}
|