Added webhook support

This commit is contained in:
2025-12-29 02:06:23 +00:00
parent fff7312d7d
commit d185d2a4d0
4 changed files with 265 additions and 27 deletions

View File

@@ -90,6 +90,12 @@
color: #666;
margin-left: 10px;
}
.received-at {
font-size: 11px;
color: #888;
margin-top: 5px;
font-style: italic;
}
.error {
background: #ffdddd;
color: #cc0000;
@@ -125,6 +131,9 @@
</div>
</div>
{% endfor %}
{% if let Some(received) = secret.received_at %}
<div class="received-at">Received: {{ received }}</div>
{% endif %}
</div>
{% endfor %}
{% endif %}