From c49cafae95642b0237e423db83e045e47d1d10b5 Mon Sep 17 00:00:00 2001 From: Alex Petric Date: Thu, 6 Feb 2025 11:57:23 -0500 Subject: [PATCH] ce --- backend/windmill-api/src/teams_ee.rs | 21 +++++++++++++++++---- 1 file changed, 17 insertions(+), 4 deletions(-) diff --git a/backend/windmill-api/src/teams_ee.rs b/backend/windmill-api/src/teams_ee.rs index 331873e487..33c1d08ce1 100644 --- a/backend/windmill-api/src/teams_ee.rs +++ b/backend/windmill-api/src/teams_ee.rs @@ -3,18 +3,31 @@ use windmill_common::error::Error; pub async fn edit_teams_command() -> Result { return Err(Error::BadRequest( - "Deploy to is only available on enterprise".to_string(), + "Teams only available on enterprise".to_string(), )); } pub async fn workspaces_list_available_teams_ids() -> Result { return Err(Error::BadRequest( - "Deploy to is only available on enterprise".to_string(), + "Teams only available on enterprise".to_string(), )); } pub async fn connect_teams() -> Result { return Err(Error::BadRequest( - "Deploy to is only available on enterprise".to_string(), + "Teams only available on enterprise".to_string(), )); -} \ No newline at end of file +} + +pub async fn run_teams_message_test_job() -> Result { + return Err(Error::BadRequest( + "Teams only available on enterprise".to_string(), + )); +} + +pub async fn workspaces_list_available_teams_channels() -> Result { + return Err(Error::BadRequest( + "Teams only available on enterprise".to_string(), + )); +} +