From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Thu, 3 Jul 2025 07:11:12 +0000 (-0700) Subject: Fix check scheduled workflows docstring X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=1cd21d0f3897ad276b0b9b158e2b358b6f256f0b;p=thirdparty%2Fpaperless-ngx.git Fix check scheduled workflows docstring --- diff --git a/src/documents/tasks.py b/src/documents/tasks.py index 202e4fc82..89db54497 100644 --- a/src/documents/tasks.py +++ b/src/documents/tasks.py @@ -394,11 +394,9 @@ def check_scheduled_workflows(): Check and run all enabled scheduled workflows. Scheduled triggers are evaluated based on a target date field (e.g. added, created, modified, or a custom date field), - combined with a day offset. - - The offset is mathematically negated resulting in the following behavior: - - Positive offsets mean the workflow should trigger BEFORE the specified date (e.g., offset = +7 → trigger 7 days before) - - Negative offsets mean the workflow should trigger AFTER the specified date (e.g., offset = -7 → trigger 7 days after) + combined with a day offset: + - Positive offsets mean the workflow should trigger AFTER the specified date (e.g., offset = +7 → trigger 7 days after) + - Negative offsets mean the workflow should trigger BEFORE the specified date (e.g., offset = -7 → trigger 7 days before) Once a document satisfies this condition, and recurring/non-recurring constraints are met, the workflow is run. """