update clikup connector

This commit is contained in:
CREDO23 2025-07-30 21:28:31 +02:00
parent 65b6177ef0
commit ede3dce9af

View file

@ -177,14 +177,13 @@ class ClickUpConnector:
datetime.strptime(end_date, "%Y-%m-%d").timestamp() * 1000
)
# TODO : Include date range in api request
params = {
"page": 0,
"order_by": "created",
"reverse": "true",
"subtasks": "true",
"include_closed": str(include_closed).lower(),
"date_created_gt": start_timestamp,
"date_created_lt": end_timestamp,
}
all_tasks = []