Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions nc_py_api/nextcloud.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@
from .loginflow_v2 import _AsyncLoginFlowV2API, _LoginFlowV2API
from .notes import _AsyncNotesAPI, _NotesAPI
from .notifications import _AsyncNotificationsAPI, _NotificationsAPI
from .teams import _AsyncTeamsAPI
from .user_status import _AsyncUserStatusAPI, _UserStatusAPI
from .users import _AsyncUsersAPI, _UsersAPI
from .users_groups import _AsyncUsersGroupsAPI, _UsersGroupsAPI
Expand Down Expand Up @@ -167,6 +168,8 @@ class _AsyncNextcloudBasic(ABC): # pylint: disable=too-many-instance-attributes
"""Nextcloud API for managing user notifications"""
talk: _AsyncTalkAPI
"""Nextcloud Talk API"""
teams: _AsyncTeamsAPI
"""Nextcloud API for managing Teams (Circles)"""
users: _AsyncUsersAPI
"""Nextcloud API for managing users."""
users_groups: _AsyncUsersGroupsAPI
Expand All @@ -188,6 +191,7 @@ def __init__(self, session: AsyncNcSessionBasic):
self.notes = _AsyncNotesAPI(session)
self.notifications = _AsyncNotificationsAPI(session)
self.talk = _AsyncTalkAPI(session)
self.teams = _AsyncTeamsAPI(session)
self.users = _AsyncUsersAPI(session)
self.users_groups = _AsyncUsersGroupsAPI(session)
self.user_status = _AsyncUserStatusAPI(session)
Expand Down
Loading
Loading