mirror of
https://github.com/vector-im/element-web.git
synced 2026-07-05 14:59:23 +00:00
44c540eca0
* Consolidate modules vitest coverage * Use vite-common as base for modules vitest config * Make knip happier * Fix coverage paths * Place modules unit tests alongside src * Switch to defineProject for better type safety * Consolidate vitest CI & coverage Kills off vite-common * Update comment * Update lockfile * Fix shared-components vitest config * Soften eslint config for tests in modules * Run eslint on modules/playwright dir too * Make tsc happy * Tweak modules to be disabled if config is missing * Restore blank line * Improve coverage * Potential fix for pull request finding 'Unused variable, import, function or class' Co-authored-by: Copilot Autofix powered by AI <223894421+github-code-quality[bot]@users.noreply.github.com> --------- Co-authored-by: Copilot Autofix powered by AI <223894421+github-code-quality[bot]@users.noreply.github.com>
@element-hq/element-web-module-widget-lifecycle
Widget lifecycle module for Element Web.
Supports the following configuration options under the configuration key io.element.element-web-modules.widget-lifecycle:
| Key | Type | Description |
|---|---|---|
| widget_permissions | object | Map of widget URL patterns to approval settings. |
Each widget configuration can use the following options:
preload_approved- if true, the preload dialog is not displayed for this widget.identity_approved- if true, requests for an identity token are automatically accepted.capabilities_approved- a list of capabilities that should be approved for this widget.
The widget URL and capability strings can use a trailing * to match multiple widgets or capabilities.
This is useful when widgets have multiple routes or capabilities include variable state keys.
Matching and precedence
- Patterns ending in
*are matched by prefix; other patterns must match exactly. - If multiple rules match, the most specific match wins per field.
- The capabilities allow-list is not merged across rules; the most specific rule that defines it wins.
Example configuration (exact match)
{
"io.element.element-web-modules.widget-lifecycle": {
"widget_permissions": {
"https://widget.example.com/": {
"preload_approved": true,
"identity_approved": true,
"capabilities_approved": [
"org.matrix.msc2931.navigate",
"org.matrix.msc2762.receive.state_event:m.room.power_levels"
]
}
}
}
}
Example configuration (wildcards)
{
"io.element.element-web-modules.widget-lifecycle": {
"widget_permissions": {
"https://widget.example.com/*": {
"preload_approved": true,
"identity_approved": true,
"capabilities_approved": [
"org.matrix.msc2931.navigate",
"org.matrix.msc2762.receive.state_event:m.room.power_levels",
"org.matrix.msc2762.send.state_event:net.custom_event#*"
]
}
}
}
}