server/app/endpoints/confluence_create.py [93:105]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        ),
    )
    await proc.wait()
    assert proc.returncode == 0, CONFLUENCE_ERROR

    # Anonymous read access
    proc = await asyncio.create_subprocess_exec(
        ACLI_CMD,
        *(
            "confluence",
            "--action",
            "addPermissions",
            "--permissions",
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



server/app/endpoints/confluence_create.py [111:123]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        ),
    )
    await proc.wait()
    assert proc.returncode == 0, CONFLUENCE_ERROR

    # View+export rights for logged-in users
    proc = await asyncio.create_subprocess_exec(
        ACLI_CMD,
        *(
            "confluence",
            "--action",
            "addPermissions",
            "--permissions",
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



