File tree 2 files changed +17
-1
lines changed
content/client-server-api/modules
2 files changed +17
-1
lines changed Original file line number Diff line number Diff line change @@ -54,7 +54,12 @@ for sending events:
54
54
55
55
- [ POST /rooms/: room \_ id/join] ( #post_matrixclientv3roomsroomidjoin )
56
56
- [ POST /rooms/: room \_ id/leave] ( #post_matrixclientv3roomsroomidleave )
57
- - [ PUT /rooms/: room \_ id/send/m.room.message/: txn \_ id] ( #put_matrixclientv3roomsroomidsendeventtypetxnid )
57
+ - [ PUT /rooms/: room \_ id/send/: event \_ type/: txn \_ id] ( #put_matrixclientv3roomsroomidsendeventtypetxnid )
58
+
59
+ - {{% changed-in v="1.2" %}} Guests can now send * any* event
60
+ type rather than just ` m.room.message ` events.
61
+
62
+ - {{% added-in v="1.2" %}} [ PUT /rooms/: room \_ id/state/: event \_ type/: state \_ key] ( #put_matrixclientv3roomsroomidstateeventtypestatekey )
58
63
- [ PUT /sendToDevice/{eventType}/{txnId}] ( #put_matrixclientv3sendtodeviceeventtypetxnid )
59
64
60
65
The following API endpoints are allowed to be accessed by guest accounts
@@ -90,3 +95,6 @@ properly enforce the permissions outlined in this section.
90
95
91
96
Homeservers may want to enable protections such as captchas for guest
92
97
registration to prevent spam, denial of service, and similar attacks.
98
+
99
+ Homeservers may want to put stricter rate limits on guest accounts,
100
+ particularly for sending state events.
Original file line number Diff line number Diff line change
1
+ {{ $ver := .Params.v }}
2
+ {{ $this := .Params.this }}
3
+
4
+ {{ if $this }}
5
+ < span > **[Changed in this version]**</ span >
6
+ {{ else }}
7
+ < span > **[Changed in `v{{ $ver }}`]**</ span >
8
+ {{ end }} {{/* Do not leave an empty line at the end of this file otherwise the inline behaviour breaks. */}}
You can’t perform that action at this time.
0 commit comments