Refactor function and configuration names for experimental features

This commit is contained in:
Andras Bacsai
2024-10-24 22:00:26 +02:00
parent 0c34e81b2b
commit b1d2914c08
5 changed files with 7 additions and 6 deletions

View File

@@ -362,9 +362,9 @@ function isCloud(): bool
return ! config('coolify.self_hosted');
}
function isExperimentalEnabled(): bool
function isExperimentalFeaturesEnabled(): bool
{
return config('coolify.is_experimental_enabled');
return config('coolify.is_experimental_features_enabled');
}
function translate_cron_expression($expression_to_validate): string
{