mirror of
https://github.com/Kozea/Radicale.git
synced 2025-04-05 22:27:36 +03:00
Document properties of BaseCollection
This commit is contained in:
parent
79e7232ecb
commit
e09d33f3ee
1 changed files with 9 additions and 0 deletions
|
@ -322,6 +322,15 @@ class BaseCollection:
|
|||
configuration = None
|
||||
logger = None
|
||||
|
||||
# Properties of instance
|
||||
"""The sanitized path of the collection without leading or trailing ``/``.
|
||||
"""
|
||||
path = ""
|
||||
"""The owner of the collection. (``path.split("/", maxsplit=1)[0]``)"""
|
||||
owner = ""
|
||||
"""Collection is a principal. (``bool(path) and "/" not in path``)"""
|
||||
is_principal = False
|
||||
|
||||
@classmethod
|
||||
def discover(cls, path, depth="0"):
|
||||
"""Discover a list of collections under the given ``path``.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue