mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-12 15:35:15 +00:00
Expand webhook code.
This commit is contained in:
@@ -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>
|
||||
|
||||
|
12
resources/views/webhooks/create.twig
Normal file
12
resources/views/webhooks/create.twig
Normal 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 %}
|
12
resources/views/webhooks/index.twig
Normal file
12
resources/views/webhooks/index.twig
Normal 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 %}
|
Reference in New Issue
Block a user