Skip to content

Commit

Permalink
update update
Browse files Browse the repository at this point in the history
  • Loading branch information
delterr committed Apr 3, 2024
1 parent 3c06062 commit 9011ce8
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
Binary file modified backend/flask_session/679eaac484e8efec851e5d02a21b12ac
Binary file not shown.
2 changes: 1 addition & 1 deletion backend/timesheets/routes.py
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ def get(self):
json_dict = {}
timesheet_ids = [timesheet.id for timesheet in timesheets]
for timesheet in timesheets:
json_dict[timesheet.id] = {"name": timesheet.consultant_name, "status": timesheet.status}
json_dict[timesheet.id] = {"id": timesheet.id, "name": timesheet.consultant_name, "status": timesheet.status}
return jsonify(json_dict), 200

class ListWeeklyTimesheetsView(MethodView):
Expand Down

0 comments on commit 9011ce8

Please sign in to comment.