From 9f873e02578f56e1cf89b8f6fd810e4de41554eb Mon Sep 17 00:00:00 2001 From: "Rodrigo Rodriguez (Pragmatismo)" Date: Mon, 30 Jun 2025 16:15:36 -0300 Subject: [PATCH] Add container setup scripts for various services - Implemented ALM container setup with Forgejo installation and systemd service configuration. - Created Bot container setup with necessary dependencies and Node.js application installation. - Developed Desktop container setup with XRDP and Brave browser installation. - Established Directory container setup with Zitadel installation and service configuration. - Added Doc Editor container setup for Collabora Online integration. - Implemented Drive container setup with MinIO installation and service configuration. - Created Email container setup with Stalwart Mail installation and service configuration. - Developed Meeting container setup with LiveKit and TURN server configuration. - Added Proxy container setup with Caddy installation and service configuration. - Implemented System container setup for general bots with service configuration. - Created Table Editor container setup with NocoDB installation and service configuration. - Developed Tables container setup with PostgreSQL installation and configuration. - Added Webmail container setup with Roundcube installation and service configuration. - Included prompt guidelines for container setup scripts. --- src/services/email.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/services/email.rs b/src/services/email.rs index a20d0e4..7a4d13d 100644 --- a/src/services/email.rs +++ b/src/services/email.rs @@ -56,7 +56,7 @@ pub async fn list_emails() -> Result>, actix_web::Er Ok(web::Json(email_list)) } -#[actix_web::post("/campaigns/{campaign_id}/click/{email}")] +#[actix_web::get("/campaigns/{campaign_id}/click/{email}")] pub async fn save_click( path: web::Path<(String, String)>, state: web::Data,