Skip to content
Merged
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
Revert "test: TT-384 get all activities from blob storage (#348)"
This reverts commit 80f4ed1.
  • Loading branch information
scastillo-jp authored Nov 15, 2021
commit a6f26c193a8f4aed9a558f3a82093acaa1b8a173
4 changes: 2 additions & 2 deletions time_tracker_api/activities/activities_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ def get_all_with_id_in_list(
activity_ids,
)

def get_all_v1(
def get_all(
self,
conditions: dict = None,
activities_id: List = None,
Expand All @@ -162,7 +162,7 @@ def get_all_v1(
)
return activities

def get_all(self, conditions: dict = None) -> list:
def get_all_test(self, conditions: dict = None) -> list:
event_ctx = self.create_event_context("read-many")
activities = self.repository.find_all_from_blob_storage(event_context=event_ctx)
return activities
Expand Down