feat: show webhook on ui

feat: n8n service
This commit is contained in:
Andras Bacsai
2023-10-25 10:43:07 +02:00
parent aa02b8d433
commit 379f4b9dff
11 changed files with 159 additions and 9 deletions

View File

@@ -31,6 +31,9 @@
window.location.hash = 'storages'"
href="#">Storages
</a>
<a :class="activeTab === 'webhooks' && 'text-white'"
@click.prevent="activeTab = 'webhooks'; window.location.hash = 'webhooks'" href="#">Webhooks
</a>
<a :class="activeTab === 'resource-limits' && 'text-white'"
@click.prevent="activeTab = 'resource-limits';
window.location.hash = 'resource-limits'"
@@ -65,6 +68,9 @@
<div x-cloak x-show="activeTab === 'storages'">
<livewire:project.service.storage :resource="$database" />
</div>
<div x-cloak x-show="activeTab === 'webhooks'">
<livewire:project.shared.webhooks :resource="$database" />
</div>
<div x-cloak x-show="activeTab === 'resource-limits'">
<livewire:project.shared.resource-limits :resource="$database" />
</div>