mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-18 14:44:58 +08:00
Add asset add / remove messaging clauses.
This commit is contained in:
parent
992c4771f4
commit
e508f06765
@ -624,6 +624,12 @@ const onMessage = function(event) {
|
||||
} else if (event.data.action === "set_widget") {
|
||||
setWidget(event, roomId);
|
||||
return;
|
||||
} else if (event.data.action === "add_widget_asset") {
|
||||
addWidgetAsset(event, roomId);
|
||||
return;
|
||||
} else if (event.data.action === "remove_widget_asset") {
|
||||
removeWidgetAsset(event, roomId);
|
||||
return;
|
||||
}
|
||||
|
||||
if (!roomId) {
|
||||
|
Loading…
Reference in New Issue
Block a user