Skip to content

Commit 3a06cbe

Browse files
committed
add mail endpoints, start
1 parent a032472 commit 3a06cbe

File tree

2 files changed

+381
-18
lines changed

2 files changed

+381
-18
lines changed

ms_graph/groups.py

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -58,24 +58,6 @@ def get_drive_by_id(self, drive_id: str) -> Dict:
5858

5959
return content
6060

61-
def get_my_drives(self) -> Dict:
62-
63-
content = self.graph_session.make_request(
64-
method='get',
65-
endpoint=self.collections_endpoint + "/me"
66-
)
67-
68-
return content
69-
70-
def get_user_drives(self, user_id: str) -> Dict:
71-
72-
content = self.graph_session.make_request(
73-
method='get',
74-
endpoint="users/{user_id}/drives".format(user_id=user_id)
75-
)
76-
77-
return content
78-
7961
def get_group_drives(self, group_id: str) -> Dict:
8062

8163
content = self.graph_session.make_request(

0 commit comments

Comments
 (0)