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 32b5111 commit c31cd1bCopy full SHA for c31cd1b
time_tracker_api/time_entries/time_entries_dao.py
@@ -7,7 +7,6 @@
7
add_project_info_to_time_entries,
8
add_activity_name_to_time_entries,
9
create_custom_query_from_str,
10
- add_user_email_to_time_entries,
11
)
12
from utils.time import (
13
datetime_str,
time_tracker_api/time_entries/time_entries_namespace.py
@@ -260,7 +260,7 @@ def post(self):
260
class LatestTimeEntries(Resource):
261
@ns.doc('list_latest_time_entries')
262
@ns.marshal_list_with(time_entry)
263
- @ns.response(HTTPStatus.NOT_FOUND, 'Time entry not found')
+ @ns.response(HTTPStatus.NOT_FOUND, 'No time entries found')
264
def get(self):
265
"""List the latest time entries"""
266
0 commit comments