From d5d7a7dffb4aa8cb6b699d790fd4f9b162255c09 Mon Sep 17 00:00:00 2001 From: Kevin Veen-Birkenbach Date: Thu, 11 Sep 2025 14:26:40 +0200 Subject: [PATCH] feat(nextcloud): add automatic installation of XWiki Nextcloud app when 'web-app-xwiki' is in group_names Ref: https://chatgpt.com/share/68c2bf97-b740-800f-a058-260f17aa131b --- roles/web-app-nextcloud/config/main.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/roles/web-app-nextcloud/config/main.yml b/roles/web-app-nextcloud/config/main.yml index d064a611..0a242ef0 100644 --- a/roles/web-app-nextcloud/config/main.yml +++ b/roles/web-app-nextcloud/config/main.yml @@ -270,3 +270,8 @@ plugins: whiteboard: # Nextcloud Whiteboard: provides a collaborative drawing and brainstorming tool (https://apps.nextcloud.com/apps/whiteboard) enabled: true + + xwiki: + # XWiki Integration: search & display XWiki content from Nextcloud + # https://apps.nextcloud.com/apps/xwiki + enabled: "{{ 'web-app-xwiki' in group_names | lower }}" \ No newline at end of file