From df33b281e82ad765f1194d7a9cbed8b2d88ae5d6 Mon Sep 17 00:00:00 2001 From: Ruben Fiszel Date: Mon, 12 Aug 2024 10:37:51 +0200 Subject: [PATCH] fix compile --- backend/windmill-common/src/ee.rs | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/backend/windmill-common/src/ee.rs b/backend/windmill-common/src/ee.rs index a87b4675f0..fb2f0a0837 100644 --- a/backend/windmill-common/src/ee.rs +++ b/backend/windmill-common/src/ee.rs @@ -34,7 +34,11 @@ pub async fn schedule_key_renewal(_http_client: &reqwest::Client, _db: &crate::d } #[cfg(feature = "enterprise")] -pub async fn renew_license_key(_http_client: &reqwest::Client, _db: &crate::db::DB) -> String { +pub async fn renew_license_key( + _http_client: &reqwest::Client, + _db: &crate::db::DB, + _key: Option, +) -> String { // Implementation is not open source "".to_string() } @@ -42,6 +46,7 @@ pub async fn renew_license_key(_http_client: &reqwest::Client, _db: &crate::db:: #[cfg(feature = "enterprise")] pub async fn create_customer_portal_session( _http_client: &reqwest::Client, + _key: Option, ) -> error::Result { // Implementation is not open source Ok("".to_string())