Skip to content

Commit

Permalink
add public organisations endpoint (#48)
Browse files Browse the repository at this point in the history
  • Loading branch information
Mopsgeschwindigkeit authored Dec 15, 2023
1 parent 6df6394 commit f145bb3
Show file tree
Hide file tree
Showing 3 changed files with 936 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/sxapi/publicV2/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
from sxapi.publicV2.groups import Groups
from sxapi.publicV2.notes import Notes
from sxapi.publicV2.observation_groups import ObservationGroups
from sxapi.publicV2.organisations import Organisations
from sxapi.publicV2.shares import Shares
from sxapi.publicV2.todos import Todos
from sxapi.publicV2.users import Users
Expand All @@ -36,6 +37,7 @@ def __init__(self, base_url=None, email=None, password=None, api_token=None):
self.shares = Shares(api=self)
self.observation_groups = ObservationGroups(api=self)
self.devices = Devices(api=self)
self.organisations = Organisations(api=self)

super().__init__(
base_url,
Expand Down
Loading

0 comments on commit f145bb3

Please sign in to comment.