From 5bd38f78089a4beb4a28ba32bc99e649f8119a4c Mon Sep 17 00:00:00 2001 From: HugoCasa Date: Mon, 26 Aug 2024 11:06:09 +0200 Subject: [PATCH] feat: put email triggers attachments on s3 (#4272) * feat: put email triggers attachments on s3 * update ee ref --- backend/ee-repo-ref.txt | 2 +- backend/windmill-api/src/jobs.rs | 22 +++++++++++----------- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/backend/ee-repo-ref.txt b/backend/ee-repo-ref.txt index 8260652cea..1513557694 100644 --- a/backend/ee-repo-ref.txt +++ b/backend/ee-repo-ref.txt @@ -1 +1 @@ -7cf76a8c6694b59f4615b0c8fa61fb02411326a7 \ No newline at end of file +bf13f97982463ff0623c9bb10e6955a3bf57cb13 \ No newline at end of file diff --git a/backend/windmill-api/src/jobs.rs b/backend/windmill-api/src/jobs.rs index 43db962e6a..5318cc7d2b 100644 --- a/backend/windmill-api/src/jobs.rs +++ b/backend/windmill-api/src/jobs.rs @@ -1036,17 +1036,17 @@ pub struct ListableCompletedJob { #[derive(Deserialize, Clone, Default)] pub struct RunJobQuery { - scheduled_for: Option>, - scheduled_in_secs: Option, - parent_job: Option, - root_job: Option, - invisible_to_owner: Option, - queue_limit: Option, - payload: Option, - job_id: Option, - tag: Option, - timeout: Option, - cache_ttl: Option, + pub scheduled_for: Option>, + pub scheduled_in_secs: Option, + pub parent_job: Option, + pub root_job: Option, + pub invisible_to_owner: Option, + pub queue_limit: Option, + pub payload: Option, + pub job_id: Option, + pub tag: Option, + pub timeout: Option, + pub cache_ttl: Option, } impl RunJobQuery {