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(), + )); +} +