Expand webhook code.

This commit is contained in:
James Cole
2022-09-17 07:08:30 +02:00
parent 10f2cf2481
commit ad9efde2d0
44 changed files with 1014 additions and 99 deletions

View File

@@ -84,6 +84,12 @@
<span>{{ 'recurrences'|_ }}</span>
</a>
</li>
<li class="{{ activeRoutePartial('webhooks') }}">
<a href="{{ route('webhooks.index') }}">
<span class="fa fa-angle-right fa-fw"></span>
<span>{{ 'webhooks'|_ }}</span>
</a>
</li>
</ul>
</li>

View File

@@ -0,0 +1,12 @@
{% set VUE_SCRIPT_NAME = 'webhooks/create' %}
{% extends './layout/default' %}
{% block breadcrumbs %}
{{ Breadcrumbs.render(Route.getCurrentRoute.getName, objectType) }}
{% endblock %}
{% block content %}
<div id="webhooks_create"></div>
{% endblock %}
{% block scripts %}
{% endblock %}

View File

@@ -0,0 +1,12 @@
{% set VUE_SCRIPT_NAME = 'webhooks/index' %}
{% extends './layout/default' %}
{% block breadcrumbs %}
{{ Breadcrumbs.render(Route.getCurrentRoute.getName, objectType) }}
{% endblock %}
{% block content %}
<div id="webhooks_index"></div>
{% endblock %}
{% block scripts %}
{% endblock %}