Files
windmill/backend/windmill-git-sync/src/git_sync_ee.rs
Ruben Fiszel 89456f502f remove rsmq
2024-11-24 11:04:54 +01:00

17 lines
402 B
Rust

use windmill_common::error::Result;
use crate::{DeployedObject, DB};
pub async fn handle_deployment_metadata<'c>(
_email: &str,
_created_by: &str,
_db: &DB,
_w_id: &str,
_obj: DeployedObject,
_deployment_message: Option<String>,
_skip_db_insert: bool,
) -> Result<()> {
// Git sync is an enterprise feature and not part of the open-source version
return Ok(());
}