1
0
mirror of https://github.com/BookStackApp/BookStack.git synced 2025-07-30 04:23:11 +03:00

Completed webhook management interface

Got webhook CRUD actions in place within the interface.
Quick manual test pass done, Needs automated tests.
This commit is contained in:
Dan Brown
2021-12-08 17:35:58 +00:00
parent 4621d8bcc5
commit 8716b1922b
12 changed files with 166 additions and 22 deletions

View File

@ -7,7 +7,7 @@
@include('settings.parts.navbar', ['selected' => 'webhooks'])
</div>
<form action="{{ url("/settings/webhooks/{$webhook->id}") }}" method="POST">
<form action="{{ $webhook->getUrl() }}" method="POST">
{!! method_field('PUT') !!}
@include('settings.webhooks.parts.form', ['model' => $webhook, 'title' => trans('settings.webhooks_edit')])
</form>