fix: replace copy and change app_name
This commit is contained in:
parent
cad0a6d81f
commit
e3ef28ec1a
@ -17,7 +17,7 @@
|
|||||||
|
|
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
'name' => env('APP_NAME', 'Coolify'),
|
'name' => env('APP_NAME', 'Last Hour Cloud'),
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|--------------------------------------------------------------------------
|
|--------------------------------------------------------------------------
|
||||||
|
@ -13,7 +13,7 @@ public function up(): void
|
|||||||
{
|
{
|
||||||
Schema::table('instance_settings', function (Blueprint $table) {
|
Schema::table('instance_settings', function (Blueprint $table) {
|
||||||
$table->boolean('is_dns_validation_enabled')->default(true);
|
$table->boolean('is_dns_validation_enabled')->default(true);
|
||||||
$table->string('custom_dns_servers')->nullable()->default('1.1.1.1');
|
$table->string('custom_dns_servers')->nullable()->default('9.9.9.9');
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -12,7 +12,7 @@
|
|||||||
"auth.register_now": "Register",
|
"auth.register_now": "Register",
|
||||||
"auth.logout": "Logout",
|
"auth.logout": "Logout",
|
||||||
"auth.register": "Register",
|
"auth.register": "Register",
|
||||||
"auth.registration_disabled": "Registration is disabled. Please contact support@lasthourhosting.org for help.",
|
"auth.registration_disabled": "Your registration is set to disabled. Please contact support@lasthourhosting.org for help.",
|
||||||
"auth.reset_password": "Reset password",
|
"auth.reset_password": "Reset password",
|
||||||
"auth.failed": "These credentials do not match our records.",
|
"auth.failed": "These credentials do not match our records.",
|
||||||
"auth.failed.callback": "Failed to process callback from login provider.",
|
"auth.failed.callback": "Failed to process callback from login provider.",
|
||||||
|
@ -69,5 +69,8 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</section>
|
<<<<<<< HEAD </section>
|
||||||
|
=======
|
||||||
|
</div>
|
||||||
|
>>>>>>> 794e9b53b (fix: replace copy and change app_name)
|
||||||
</x-layout-simple>
|
</x-layout-simple>
|
@ -1,6 +1,6 @@
|
|||||||
{{ Illuminate\Mail\Markdown::parse('---') }}
|
{{ Illuminate\Mail\Markdown::parse('---') }}
|
||||||
|
|
||||||
Thank you,<br>
|
Thank you,<br>
|
||||||
{{ config('app.name') ?? 'Coolify' }}
|
{{ config('app.name') ?? 'Last Hour Cloud' }}
|
||||||
|
|
||||||
{{ Illuminate\Mail\Markdown::parse('[Contact Support](https://lasthourhosting.org/contact.html)') }}
|
{{ Illuminate\Mail\Markdown::parse('[Contact Support](https://lasthourhosting.org/contact.html)') }}
|
@ -32,13 +32,22 @@
|
|||||||
</form>
|
</form>
|
||||||
|
|
||||||
<h2 class="pt-6">Advanced</h2>
|
<h2 class="pt-6">Advanced</h2>
|
||||||
<div class="text-right md:w-96">
|
<<<<<<< HEAD <div class="text-right md:w-96">
|
||||||
@if (!is_null(env('AUTOUPDATE', null)))
|
@if (!is_null(env('AUTOUPDATE', null)))
|
||||||
|
=======
|
||||||
|
<div class="flex flex-col py-6 text-right w-80">
|
||||||
|
@if(!is_null(env('AUTOUPDATE', null)))
|
||||||
|
>>>>>>> 794e9b53b (fix: replace copy and change app_name)
|
||||||
<x-forms.checkbox instantSave helper="AUTOUPDATE is set in .env file, you need to modify it there." disabled id="is_auto_update_enabled" label="Auto Update Last Hour Cloud" />
|
<x-forms.checkbox instantSave helper="AUTOUPDATE is set in .env file, you need to modify it there." disabled id="is_auto_update_enabled" label="Auto Update Last Hour Cloud" />
|
||||||
@else
|
@else
|
||||||
<x-forms.checkbox instantSave id="is_auto_update_enabled" label="Auto Update Last Hour Cloud" />
|
<x-forms.checkbox instantSave id="is_auto_update_enabled" label="Auto Update Last Hour Cloud" />
|
||||||
@endif
|
@endif
|
||||||
<x-forms.checkbox instantSave id="is_registration_enabled" label="Registration Allowed" />
|
<x-forms.checkbox instantSave id="is_registration_enabled" label="Registration Allowed" />
|
||||||
<x-forms.checkbox instantSave id="do_not_track" label="Do Not Track" />
|
<x-forms.checkbox instantSave id="do_not_track" label="Do Not Track" />
|
||||||
|
<<<<<<< HEAD=======@if ($next_channel) <x-forms.checkbox instantSave helper="Do not recommended, only if you like to live on the edge." id="next_channel" label="Enable pre-release (early) updates" />
|
||||||
|
@else
|
||||||
|
<x-forms.checkbox disabled instantSave helper="Currently disabled. Do not recommended, only if you like to live on the edge." id="next_channel" label="Enable pre-release (early) updates" />
|
||||||
|
@endif
|
||||||
|
>>>>>>> 794e9b53b (fix: replace copy and change app_name)
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
Loading…
Reference in New Issue
Block a user