From b545a400c3657848bb570aed96d047514dc8c133 Mon Sep 17 00:00:00 2001 From: Houkime <> Date: Fri, 10 Nov 2023 11:47:48 +0000 Subject: [PATCH] doc(jobs): document that we are tz-naive when storing jobs --- selfprivacy_api/jobs/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/selfprivacy_api/jobs/__init__.py b/selfprivacy_api/jobs/__init__.py index 05b5ab8..7310016 100644 --- a/selfprivacy_api/jobs/__init__.py +++ b/selfprivacy_api/jobs/__init__.py @@ -8,8 +8,8 @@ A job is a dictionary with the following keys: - name: name of the job - description: description of the job - status: status of the job - - created_at: date of creation of the job - - updated_at: date of last update of the job + - created_at: date of creation of the job, naive localtime + - updated_at: date of last update of the job, naive localtime - finished_at: date of finish of the job - error: error message if the job failed - result: result of the job