nextcloud/tests/blueprints/basic.toml
Ferdinand Thiessen f3383f9f90
chore: split frontend building into legacy Vue 2 and Vue 3
- Built the frontend in separate packages until we migrated everything
  to Vue 3.
- Separate logic into two packages controlled by main package.json

Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
2025-10-22 17:10:28 +02:00

25 lines
429 B
TOML

# SPDX-FileCopyrightText: 2022 Nextcloud GmbH and Nextcloud contributors
# SPDX-License-Identifier: AGPL-3.0-or-later
# Used for performance testing, see .github/workflows/performance.yml
[[user]]
id = "test"
groups = ["test_group"]
files = [
"test.txt",
"foo/sub.png",
"empty",
]
[[user]]
id = "test2"
groups = ["test"]
files = [
"many_files/file_[1..100].txt"
]
[[share]]
from = "test2"
to = "test"
file = "many_files"