Refactor isExperimentalEnabled function and remove its usage
This commit is contained in:
@@ -362,10 +362,6 @@ function isCloud(): bool
|
|||||||
return ! config('coolify.self_hosted');
|
return ! config('coolify.self_hosted');
|
||||||
}
|
}
|
||||||
|
|
||||||
function isExperimentalEnabled(): bool
|
|
||||||
{
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
function translate_cron_expression($expression_to_validate): string
|
function translate_cron_expression($expression_to_validate): string
|
||||||
{
|
{
|
||||||
if (isset(VALID_CRON_STRINGS[$expression_to_validate])) {
|
if (isset(VALID_CRON_STRINGS[$expression_to_validate])) {
|
||||||
|
@@ -159,7 +159,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@if (!$server->isSwarm() && !$server->isBuildServer())
|
@if (!$server->isSwarm() && !$server->isBuildServer())
|
||||||
@if (isExperimentalEnabled())
|
@if (isDev())
|
||||||
<div class="flex gap-2 items-center pt-4 pb-2">
|
<div class="flex gap-2 items-center pt-4 pb-2">
|
||||||
<h3>Sentinel</h3>
|
<h3>Sentinel</h3>
|
||||||
@if ($server->isSentinelEnabled())
|
@if ($server->isSentinelEnabled())
|
||||||
@@ -181,7 +181,7 @@
|
|||||||
<h3>Sentinel</h3>
|
<h3>Sentinel</h3>
|
||||||
<div>Sentinel is not available in this version (soon).</div>
|
<div>Sentinel is not available in this version (soon).</div>
|
||||||
@endif
|
@endif
|
||||||
@if (isExperimentalEnabled())
|
@if (isDev())
|
||||||
<div class="flex flex-col gap-2">
|
<div class="flex flex-col gap-2">
|
||||||
<div class="w-64">
|
<div class="w-64">
|
||||||
<x-forms.checkbox wire:model.live="server.settings.is_sentinel_enabled"
|
<x-forms.checkbox wire:model.live="server.settings.is_sentinel_enabled"
|
||||||
|
Reference in New Issue
Block a user