coolify/resources/views/livewire/notifications/discord.blade.php

44 lines
1.9 KiB
PHP
Raw Normal View History

2023-06-01 10:15:33 +00:00
<div>
2024-06-07 09:01:10 +00:00
<x-slot:title>
Notifications | Coolify
</x-slot>
<x-notification.navbar />
<form wire:submit='submit' class="flex flex-col gap-4">
2023-06-01 10:15:33 +00:00
<div class="flex items-center gap-2">
2023-06-02 10:34:45 +00:00
<h2>Discord</h2>
<x-forms.button type="submit">
2023-06-01 10:15:33 +00:00
Save
</x-forms.button>
2024-11-03 22:19:44 +00:00
@if ($discordEnabled)
2024-06-07 09:01:10 +00:00
<x-forms.button class="normal-case dark:text-white btn btn-xs no-animation btn-primary"
2023-08-11 18:19:42 +00:00
wire:click="sendTestNotification">
2023-06-09 13:55:21 +00:00
Send Test Notifications
</x-forms.button>
@endif
2023-06-01 10:15:33 +00:00
</div>
<div class="w-32">
2024-11-05 10:33:33 +00:00
<x-forms.checkbox instantSave="instantSaveDiscordEnabled" id="discordEnabled" label="Enabled" />
2023-05-25 16:27:52 +00:00
</div>
2023-07-28 10:51:26 +00:00
<x-forms.input type="password"
2023-08-11 18:19:42 +00:00
helper="Generate a webhook in Discord.<br>Example: https://discord.com/api/webhooks/...." required
2024-11-03 22:19:44 +00:00
id="discordWebhookUrl" label="Webhook" />
2023-05-25 16:27:52 +00:00
</form>
2024-11-03 22:19:44 +00:00
@if ($discordEnabled)
2023-09-08 14:59:49 +00:00
<h2 class="mt-4">Subscribe to events</h2>
2023-08-10 19:00:02 +00:00
<div class="w-64">
@if (isDev())
2024-11-03 22:19:44 +00:00
<x-forms.checkbox instantSave="saveModel" id="discordNotificationsTest" label="Test" />
2023-06-20 13:04:46 +00:00
@endif
2024-11-03 22:19:44 +00:00
<x-forms.checkbox instantSave="saveModel" id="discordNotificationsStatusChanges"
2023-10-05 12:44:17 +00:00
label="Container Status Changes" />
2024-11-03 22:19:44 +00:00
<x-forms.checkbox instantSave="saveModel" id="discordNotificationsDeployments"
2023-10-05 12:44:17 +00:00
label="Application Deployments" />
2024-11-03 22:19:44 +00:00
<x-forms.checkbox instantSave="saveModel" id="discordNotificationsDatabaseBackups" label="Backup Status" />
<x-forms.checkbox instantSave="saveModel" id="discordNotificationsScheduledTasks"
label="Scheduled Tasks Status" />
2024-11-03 22:19:44 +00:00
<x-forms.checkbox instantSave="saveModel" id="discordNotificationsServerDiskUsage"
label="Server Disk Usage" />
2023-06-20 13:04:46 +00:00
</div>
@endif
2023-05-25 16:27:52 +00:00
</div>