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
2 changes: 1 addition & 1 deletion time_tracker_api/time_entries/time_entries_model.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import abc
from dataclasses import dataclass, field
from typing import List, Callable
from flask import jsonify

from azure.cosmos import PartitionKey
from flask_restplus._http import HTTPStatus
Expand Down Expand Up @@ -150,6 +149,7 @@ def find_all(
custom_params=custom_params,
)

project_dao = projects_model.create_dao()
projects = project_dao.get_all()
add_project_name_to_time_entries(time_entries, projects)
return time_entries
Expand Down