Skip to content

Commit

Permalink
fix (export): Removing drive id from interaction model and adding tim…
Browse files Browse the repository at this point in the history
…e metadata (#204)

* Removing drive id from interaction model

* Adding time data to the interaction-files

* Adding all the metadata

* Add ALL the metadata
  • Loading branch information
nathan-moore-97 authored Apr 19, 2024
1 parent a6b7cce commit ed2f088
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
1 change: 1 addition & 0 deletions gdrive/drive_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -208,6 +208,7 @@ def get_files_in_folder(id: str) -> List:
q=f"'{id}' in parents and trashed=false",
supportsAllDrives=True,
includeItemsFromAllDrives=True,
fields="nextPageToken, files(*)",
pageToken=page_token,
)
.execute()
Expand Down
1 change: 0 additions & 1 deletion gdrive/export_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,6 @@ async def find(find: FindModel):
# ------------------------------- Archive API --------------------------------------
class InteractionModel(BaseModel):
interactionId: str
driveId: str


@router.post("/export/interaction-files")
Expand Down

0 comments on commit ed2f088

Please sign in to comment.