feat(conversations): Add new sample conversation "💡 Let's get started!"

Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
Joas Schilling
2025-01-13 17:29:53 +01:00
parent a4db9bfbbb
commit 07e6368d88
17 changed files with 433 additions and 17 deletions

View File

@ -18,6 +18,7 @@
| `share:password` | No | Video verification to verify the identity of the share recipient | Share token |
| `room` | Yes | Room is a breakout room | Token of the main/parent conversation |
| `phone` | Yes | Room is created when calling a phone number with SIP dial-out | `phone` (not set atm, just used for the default avatar) |
| `sample` | No | Room is a sample conversation | User ID the sample |
### Read-only states
* `0` Read-write

View File

@ -0,0 +1,72 @@
NAME: Let´s get started!
EMOJI: 💡
COLOR: #0082c9
---
{DESCRIPTION}
**Nextcloud Talk** is a secure, self-hosted communication platform that integrates seamlessly with the Nextcloud ecosystem.
#### Key Features of Nextcloud Talk:
* Chat and messaging in private and group chats
* Voice and video calls
* File sharing and integration with other Nextcloud apps
* Customizable conversation settings, moderation and privacy controls
* Web, desktop and mobile (iOS and Android)
* Private & secure communication
Find out more in the [user documentation](https://docs.nextcloud.com/server/latest/user_manual/en/talk/index.html).
---
# Welcome to Nextcloud Talk
Nextcloud Talk is a private and powerful messaging app that integrates with Nextcloud. Chat in private or group conversations, collaborate over voice and video calls, organize webinars and events, customize your conversations and more.
---
## 🎨 Format texts to create rich messages
In Nextcloud Talk, you can use Markdown syntax to format your messages. For example, apply **bold** or *italic* formatting, or `highlight texts as code`. You can even create tables and add headings to your text.
Need to fix a typo or change formatting? Edit your message by clicking "Edit message" in the message menu.
---
## 🔗 Add attachments and links
Attach files from your Nextcloud Hub using the "+" button. Share items from Files and various Nextcloud apps. Some apps even support interactive widgets, for example, the Text app.
{FILE:Readme.md}
---
## 💭 Let the conversations flow: mention users, react to messages and more
You can mention everybody in the conversation @all or mention specific participants by typing "@" and picking their name from the list.
{REACTION:😍}
{REACTION:👍}
---
{REPLY}
You can reply to messages, forward them to other chats and people, or copy message content.
---
## ✨ Do more with Smart Picker
Simply type "/" or go to the "+" menu to open the Smart Picker where you can attach various content to your messages. You can configure the Smart Picker to be able to add items from Nextcloud apps, GIFs, map locations, AI generated content and much more.
---
## ⚙️ Manage conversation settings
In the conversation menu, you can access various settings to manage your conversations, such as:
* Edit conversation info
* Manage notifications
* Apply numerous moderation rules
* Configure access and security
* Enable bots
* and more!

View File

@ -88,6 +88,7 @@ Legend:
| `matterbridge_binary` | string | | No | | Path to the matterbridge binary file |
| `bridge_bot_password` | string | | No | | Automatically generated password of the matterbridge bot user profile |
| `default_attachment_folder` | string | `/Talk` | No | | Specify default attachment folder location |
| `samples_directory` | string | | No | | Specify a readable directory that contains other sample conversation data |
| `start_calls` | int | `0` | Yes | 🖌️ | Who can start a call, see [constants list](constants.md#start-call) |
| `max_call_duration` | int | `0` | No | | Maximum duration of a call in seconds, 0 for unlimited. Federated calls will be terminated based on the setting of the host server. Calls are ended via a background job, so system cron should be used and calls will last a bit longer (until the next execution of the cron). |
| `max-gif-size` | int | `3145728` | No | | Maximum file size for clients to render gifs previews with animation |
@ -116,5 +117,6 @@ Legend:
| `delete_one_to_one_conversations` | string<br>`1` or `0` | `0` | No | | Whether one-to-one conversations can be left by either participant or should be deleted when one participant leaves |
| `enable_matterbridge` | string<br>`1` or `0` | `0` | No | 🖌️ | Whether the Matterbridge integration is enabled and can be configured |
| `force_passwords` | string<br>`1` or `0` | `0` | No | | Whether public chats are forced to use a password |
| `create_samples` | string<br>`1` or `0` | `1` | No | | Create sample conversations (the content can be overwritten by providing files in a provided `samples_directory` app config) |
| `inactivity_lock_after_days` | int | `0` | No | | A duration (in days) after which rooms are locked. Calculated from the last activity in the room. |
| `inactivity_enable_lobby` | string<br>`1` or `0` | `0` | No | | Additionally enable the lobby for inactive rooms so they can only be read by moderators. |