You've already forked matrix-react-sdk
mirror of
https://github.com/matrix-org/matrix-react-sdk.git
synced 2025-12-22 09:02:11 +03:00
Let Element Call widget receive m.room.create (#12710)
* Let Element Call widget receive m.room.create This allows the widget to check the room version without prompting the user to grant that capability, so the widget can know about version-specific auth rules (namely MSC3779). * Test that call widgets get RoomCreate events
This commit is contained in:
committed by
GitHub
parent
c843a4163a
commit
59d08d84b0
@@ -172,6 +172,10 @@ export class StopGapWidgetDriver extends WidgetDriver {
|
||||
this.allowedCapabilities.add(
|
||||
WidgetEventCapability.forStateEvent(EventDirection.Receive, "org.matrix.msc3401.call.member").raw,
|
||||
);
|
||||
// for determining auth rules specific to the room version
|
||||
this.allowedCapabilities.add(
|
||||
WidgetEventCapability.forStateEvent(EventDirection.Receive, EventType.RoomCreate).raw,
|
||||
);
|
||||
|
||||
const sendRecvRoomEvents = ["io.element.call.encryption_keys"];
|
||||
for (const eventType of sendRecvRoomEvents) {
|
||||
|
||||
Reference in New Issue
Block a user