Skip to content

Commit

Permalink
Merge pull request #111 from matrix-org/t3chguy/fix/20499
Browse files Browse the repository at this point in the history
  • Loading branch information
t3chguy authored Oct 3, 2024
2 parents 13681c0 + 64117cd commit 17de6d0
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions schemas/WebPanelResize.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"type": "object",
"description": "Triggered when the user resizes a layout panel.",
"properties": {
"eventName": {
"enum": ["WebPanelResize"]
},
"panel": {
"description": "The panel that was resized.",
"enum": ["right"]
},
"roomType": {
"description": "The type of room the user is viewing when resizing the panel.",
"enum": ["video_room", "maximised_widget", "user_profile", "space", "other_room"]
},
"size": {
"description": "The size to which the user has resized the panel in pixels.",
"type": "integer"
}
},
"required": ["eventName", "panel", "roomType", "size"],
"additionalProperties": false
}

0 comments on commit 17de6d0

Please sign in to comment.