James Cole 2024-09-25 17:38:17 +02:00
parent ef52f0aad1
commit 9552701662
No known key found for this signature in database
GPG Key ID: B49A324B7EAD6D80

View File

@ -85,12 +85,12 @@
</a> </a>
</li> </li>
{% if true == featuringWebhooks %} {% if true == featuringWebhooks %}
<li class="{{ activeRoutePartial('webhooks') }}"> <li class="{{ activeRoutePartial('webhooks') }}">
<a href="{{ route('webhooks.index') }}"> <a href="{{ route('webhooks.index') }}">
<span class="fa fa-angle-right fa-fw"></span> <span class="fa fa-angle-right fa-fw"></span>
<span>{{ 'webhooks'|_ }}</span> <span>{{ 'webhooks'|_ }}</span>
</a> </a>
</li> </li>
{% else %} {% else %}
<li class=""> <li class="">
<a href="#"> <a href="#">
@ -230,10 +230,18 @@
</ul> </ul>
</li> </li>
{% if 'web' == authGuard %}
{% if 'remote_user_guard' != authGuard or '' != logoutUri %}
<li> <li>
<a href="{{ route('logout') }}" class="logout-link"> <a href="{{ route('logout') }}" class="logout-link">
<em class="fa fa-sign-out fa-fw"></em>
<span>{{ 'logout'|_ }}
</span>
</a>
</li>
{% endif %}
{% if 'remote_user_guard' == authGuard and '' != logoutUrl %}
<li>
<a href="{{ logoutUrl }}">
<em class="fa fa-sign-out fa-fw"></em> <em class="fa fa-sign-out fa-fw"></em>
<span>{{ 'logout'|_ }}</span> <span>{{ 'logout'|_ }}</span>
</a> </a>