feat(users): Initialize user API client

This commit is contained in:
Chris Coutinho
2025-09-11 09:42:42 +02:00
parent 6fa59621bf
commit 961f23b5ea
6 changed files with 1653 additions and 0 deletions
+2
View File
@@ -18,6 +18,7 @@ from .deck import DeckClient
from .notes import NotesClient
from .tables import TablesClient
from .webdav import WebDAVClient
from .users import UsersClient
logger = logging.getLogger(__name__)
@@ -71,6 +72,7 @@ class NextcloudClient:
self.calendar = CalendarClient(self._client, username)
self.contacts = ContactsClient(self._client, username)
self.deck = DeckClient(self._client, username)
self.users = UsersClient(self._client, username)
# Initialize controllers
self._notes_search = NotesSearchController()