Skip to content
This repository was archived by the owner on Mar 5, 2025. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions packages/element-web-guest-module/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,15 +63,15 @@ There are also other optional configuration options:

Example configuration:

```json
```jsonc
{
"net.nordeck.element_web.module.guest": {
"config": {
"guest_user_homeserver_url": "https://matrix.local/",
"guest_user_prefix": "@guest-"
"guest_user_prefix": "@guest-",
// ... add more optional configurations
}
}
},
},
}
```

Expand Down
14 changes: 7 additions & 7 deletions packages/element-web-opendesk-module/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,25 +50,25 @@ To have the primary button background color consistent with your menu color, use

Example configuration:

```json
```jsonc
{
"net.nordeck.element_web.module.opendesk": {
"config": {
"banner": {
"ics_navigation_json_url": "https://example.com/navigation.json",
"ics_silent_url": "https://example.com/silent",
"portal_logo_svg_url": "https://example.com/logo.svg",
"portal_url": "https://example.com"
"portal_url": "https://example.com",
},

// ... add more optional configurations
// ... add more optional configuration
"custom_css_variables": {
"--cpd-color-bg-action-primary-rest": "#5e27dd",
"--cpd-color-text-action-accent": "#5e27dd",
"--cpd-color-icon-on-solid-primary": "#000000"
}
}
}
"--cpd-color-icon-on-solid-primary": "#000000",
},
},
},
}
```

Expand Down
Loading