From f98873093dff8f41dc090edb27ebfb50db1eaff7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julius=20H=C3=A4rtl?= Date: Thu, 20 Jul 2023 10:54:33 +0200 Subject: [PATCH] fix: request full details for board export MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Julius Härtl --- lib/Command/UserExport.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Command/UserExport.php b/lib/Command/UserExport.php index 4d869e275..b435e2ee5 100644 --- a/lib/Command/UserExport.php +++ b/lib/Command/UserExport.php @@ -69,7 +69,7 @@ class UserExport extends Command { $legacyFormat = $input->getOption('legacy-format'); $this->boardService->setUserId($userId); - $boards = $this->boardService->findAll(); + $boards = $this->boardService->findAll(fullDetails: true); $data = []; foreach ($boards as $board) {