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:
parent
c843a4163a
commit
59d08d84b0
2 changed files with 5 additions and 0 deletions
|
@ -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) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue