We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3a95d9c commit b1fd602Copy full SHA for b1fd602
time_tracker_api/time_entries/time_entries_model.py
@@ -1,7 +1,6 @@
1
import abc
2
from dataclasses import dataclass, field
3
from typing import List, Callable
4
-from flask import jsonify
5
6
from azure.cosmos import PartitionKey
7
from flask_restplus._http import HTTPStatus
@@ -150,6 +149,7 @@ def find_all(
150
149
custom_params=custom_params,
151
)
152
+ project_dao = projects_model.create_dao()
153
projects = project_dao.get_all()
154
add_project_name_to_time_entries(time_entries, projects)
155
return time_entries
0 commit comments