basic.toml 357 B

12345678910111213141516171819202122
  1. # SPDX-FileCopyrightText: 2022 Nextcloud GmbH and Nextcloud contributors
  2. # SPDX-License-Identifier: AGPL-3.0-or-later
  3. [[user]]
  4. id = "test"
  5. groups = ["test_group"]
  6. files = [
  7. "test.txt",
  8. "foo/sub.png",
  9. "empty",
  10. ]
  11. [[user]]
  12. id = "test2"
  13. groups = ["test"]
  14. files = [
  15. "many_files/file_[1..100].txt"
  16. ]
  17. [[share]]
  18. from = "test2"
  19. to = "test"
  20. file = "many_files"