coolify/resources/views/livewire/notifications/telegram.blade.php
Andras Bacsai 8ae56587d5
feat(ui): Shadow UI redesign, domain management, and DNS autoconfigure (#11119)
Co-authored-by: ShadowArcanist <162910371+ShadowArcanist@users.noreply.github.com>
2026-08-03 23:11:54 +02:00

47 lines
2.3 KiB
PHP

<div>
<x-slot:title>
Telegram Notifications | Coolify
</x-slot>
<x-notification.navbar />
<div class="application-settings-form flex flex-col gap-6">
<form wire:submit="submit">
<x-unsaved-bar action="submit" />
<x-application.settings-section title="Telegram"
description="Deliver team notifications through a Telegram bot and chat.">
<x-slot:actions>
<x-forms.button type="button" wire:click="sendTestNotification"
:disabled="!$telegramEnabled">
<x-reicon name="notifications" class="size-3.5" />
Send test
</x-forms.button>
</x-slot:actions>
<div class="grid gap-4 lg:grid-cols-2">
<div class="lg:col-span-2">
<div class="w-full sm:w-72">
<x-forms.listbox id="telegramEnabled" label="Telegram delivery"
onChange="instantSaveTelegramEnabled"
:disabled="!auth()->user()->can('update', $settings)" :options="[
['value' => true, 'label' => 'Enabled'],
['value' => false, 'label' => 'Disabled'],
]" />
</div>
</div>
@can('update', $settings)
<x-forms.input type="password" autocomplete="new-password" required id="telegramToken"
label="Bot API token" helper="Create a bot with BotFather to obtain this token." />
<x-forms.input type="password" autocomplete="new-password" required id="telegramChatId"
label="Chat ID" helper="Add the bot to your chat, then enter that chat ID." />
@else
<x-forms.input disabled label="Bot API token" value="Hidden (only admins can view)" />
<x-forms.input disabled label="Chat ID" value="Hidden (only admins can view)" />
@endcan
</div>
</x-application.settings-section>
</form>
<x-notification.event-grid :settings="$settings" channel="telegram" threaded />
</div>
</div>