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
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(
def get_all_v1(
self,
conditions: dict = None,
activities_id: List = None,
Expand All @@ -162,7 +162,7 @@ def get_all(
)
return activities

def get_all_test(self, conditions: dict = None) -> list:
def get_all(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