This commit is contained in:
Alex Petric
2025-02-06 11:57:23 -05:00
parent eea16d5d55
commit c49cafae95
+17 -4
View File
@@ -3,18 +3,31 @@ use windmill_common::error::Error;
pub async fn edit_teams_command() -> Result<StatusCode, Error> {
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<StatusCode, Error> {
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<StatusCode, Error> {
return Err(Error::BadRequest(
"Deploy to is only available on enterprise".to_string(),
"Teams only available on enterprise".to_string(),
));
}
}
pub async fn run_teams_message_test_job() -> Result<StatusCode, Error> {
return Err(Error::BadRequest(
"Teams only available on enterprise".to_string(),
));
}
pub async fn workspaces_list_available_teams_channels() -> Result<StatusCode, Error> {
return Err(Error::BadRequest(
"Teams only available on enterprise".to_string(),
));
}