mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-19 00:02:03 +00:00
998f11a10d
* fix: Raw apps deployment UI (and merge UI) * Add folders and resource tpyes to merge UI * claude first pass on adding the new arg for h_deploy_metadata * Add missing argument to handle_deployment_metadata in all its calls * Add support for folders and resource types in merge UI * Update eereporef for CI * Update ee repo * Add migration to reset cached diff with potential artifacts * fix type in frontend * Preapare sqlx * Remove unused import and logs * update ee-repo * Update eerepo * chore: update ee-repo-ref to aca38475afd2cafaf63f4bbffc65be9437d57d86 This commit updates the EE repository reference after PR #397 was merged in windmill-ee-private. Previous ee-repo-ref: 19c64cf8c61d83f45047b37660054b29658cd403 New ee-repo-ref: aca38475afd2cafaf63f4bbffc65be9437d57d86 Automated by sync-ee-ref workflow. * Make integration test for workspace comparisons * Update SQLx metadata --------- Co-authored-by: windmill-internal-app[bot] <windmill-internal-app[bot]@users.noreply.github.com>
36 lines
849 B
Rust
36 lines
849 B
Rust
#[cfg(feature = "private")]
|
|
#[allow(unused)]
|
|
pub use crate::git_sync_ee::*;
|
|
|
|
#[cfg(not(feature = "private"))]
|
|
use windmill_common::error::Result;
|
|
|
|
#[cfg(not(feature = "private"))]
|
|
use crate::{DeployedObject, DB};
|
|
|
|
#[cfg(not(feature = "private"))]
|
|
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,
|
|
_renamed_from: Option<&str>,
|
|
) -> Result<()> {
|
|
// Git sync is an enterprise feature and not part of the open-source version
|
|
return Ok(());
|
|
}
|
|
|
|
#[cfg(not(feature = "private"))]
|
|
pub async fn handle_fork_branch_creation<'c>(
|
|
_email: &str,
|
|
_created_by: &str,
|
|
_db: &DB,
|
|
_w_id: &str,
|
|
_fork_workspace_id: &str,
|
|
) -> Result<Vec<uuid::Uuid>> {
|
|
return Ok(vec![]);
|
|
}
|