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

34 lines
1.5 KiB
PHP
Raw Normal View History

2023-06-01 12:15:33 +02:00
<div>
2023-05-25 18:27:52 +02:00
<form wire:submit.prevent='submit' class="flex flex-col">
2023-06-01 12:15:33 +02:00
<div class="flex items-center gap-2">
2023-06-02 12:34:45 +02:00
<h2>Discord</h2>
<x-forms.button type="submit">
2023-06-01 12:15:33 +02:00
Save
</x-forms.button>
2023-06-20 15:04:46 +02:00
@if ($model->extra_attributes->discord_enabled)
2023-06-09 15:55:21 +02:00
<x-forms.button class="text-white normal-case btn btn-xs no-animation btn-primary"
wire:click="sendTestNotification">
Send Test Notifications
</x-forms.button>
@endif
2023-06-01 12:15:33 +02:00
</div>
2023-06-19 14:31:42 +02:00
<div class="w-48">
2023-06-20 15:04:46 +02:00
<x-forms.checkbox instantSave id="model.extra_attributes.discord_enabled" label="Notification Enabled" />
2023-05-25 18:27:52 +02:00
</div>
2023-06-02 12:34:45 +02:00
<x-forms.input type="string"
helper="Generate a webhook in Discord.<br>Example: https://discord.com/api/webhooks/...." required
2023-06-20 15:04:46 +02:00
id="model.extra_attributes.discord_webhook_url" label="Webhook" />
2023-05-25 18:27:52 +02:00
</form>
2023-06-20 15:04:46 +02:00
@if (data_get($model, 'extra_attributes.discord_enabled'))
<h4 class="mt-4">Subscribe to events</h4>
<div class="w-64 ">
@if (isDev())
<x-forms.checkbox instantSave="saveModel" id="model.extra_attributes.notifications_discord_test"
label="Test Notifications" />
@endif
<x-forms.checkbox instantSave="saveModel" id="model.extra_attributes.notifications_discord_deployments"
label="New Deployments" />
</div>
@endif
2023-05-25 18:27:52 +02:00
</div>