From 23091462ff5a5847bf707212e188ad6e4c20c4a2 Mon Sep 17 00:00:00 2001 From: Leif Battermann Date: Tue, 14 Jun 2022 13:11:26 +0200 Subject: [PATCH 1/2] added guest link feature config docs --- .../how-to/install/team-feature-settings.md | 23 +++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/docs/src/how-to/install/team-feature-settings.md b/docs/src/how-to/install/team-feature-settings.md index bc6384e838..01e1a8497d 100644 --- a/docs/src/how-to/install/team-feature-settings.md +++ b/docs/src/how-to/install/team-feature-settings.md @@ -28,3 +28,26 @@ galley: ``` Note that the lock status is required but has no effect, as it is currently not supported for team admins to enable or disable `sndFactorPasswordChallenge`. We recommend to set the lock status to `locked`. + +## Guest links + +The guest link feature is the ability for a Wire users to join a group conversation by tapping on a unique link generated by an admin of that group. + +The feature is enabled and unlocked by default and can be disabled on a per-team (via team management) basis or disabled and optionally locked for the entire backend (via Helm overrides). If the feature is locked, it cannot be enabled by team admins via team management. + +To change the configuration for the entire server, add the following to your Helm overrides in `values/wire-server/values.yaml`: + +```yaml +galley: + # ... + config: + # ... + settings: + # ... + featureFlags: + # ... + conversationGuestLinks: + defaults: + status: disabled + lockStatus: locked +``` From 89f2d720bd9dc7394728edb9af76907f4c355de1 Mon Sep 17 00:00:00 2001 From: Leif Battermann Date: Tue, 14 Jun 2022 13:14:11 +0200 Subject: [PATCH 2/2] changelog --- changelog.d/4-docs/pr-2480 | 1 + 1 file changed, 1 insertion(+) create mode 100644 changelog.d/4-docs/pr-2480 diff --git a/changelog.d/4-docs/pr-2480 b/changelog.d/4-docs/pr-2480 new file mode 100644 index 0000000000..309e21c1ae --- /dev/null +++ b/changelog.d/4-docs/pr-2480 @@ -0,0 +1 @@ +Docs for guest links server and team feature settings added