feat: Add Groups API client

This commit is contained in:
Chris Coutinho
2025-10-15 03:43:25 +02:00
parent a38c795124
commit 85f8522085
3 changed files with 167 additions and 4 deletions
+2
View File
@@ -15,6 +15,7 @@ from ..controllers.notes_search import NotesSearchController
from .calendar import CalendarClient
from .contacts import ContactsClient
from .deck import DeckClient
from .groups import GroupsClient
from .notes import NotesClient
from .sharing import SharingClient
from .tables import TablesClient
@@ -74,6 +75,7 @@ class NextcloudClient:
self.contacts = ContactsClient(self._client, username)
self.deck = DeckClient(self._client, username)
self.users = UsersClient(self._client, username)
self.groups = GroupsClient(self._client, username)
self.sharing = SharingClient(self._client, username)
# Initialize controllers