summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--changelog.d/11378.feature1
-rw-r--r--synapse/rest/client/room.py2
2 files changed, 2 insertions, 1 deletions
diff --git a/changelog.d/11378.feature b/changelog.d/11378.feature
new file mode 100644
index 0000000000..524bf84f32
--- /dev/null
+++ b/changelog.d/11378.feature
@@ -0,0 +1 @@
+Allow guests to send state events per [MSC3419](https://github.com/matrix-org/matrix-doc/pull/3419).
\ No newline at end of file
diff --git a/synapse/rest/client/room.py b/synapse/rest/client/room.py
index f48e2e6ca2..60719331b6 100644
--- a/synapse/rest/client/room.py
+++ b/synapse/rest/client/room.py
@@ -187,7 +187,7 @@ class RoomStateEventRestServlet(TransactionRestServlet):
         state_key: str,
         txn_id: Optional[str] = None,
     ) -> Tuple[int, JsonDict]:
-        requester = await self.auth.get_user_by_req(request)
+        requester = await self.auth.get_user_by_req(request, allow_guest=True)
 
         if txn_id:
             set_tag("txn_id", txn_id)