Add support for Discord webhooks

This commit is contained in:
2024-06-28 06:04:30 +02:00
parent c266f32275
commit 3f7bacca2f
8 changed files with 99 additions and 3 deletions

View File

@ -9,4 +9,5 @@ app_name: str = "core"
urlpatterns: list[URLPattern | URLResolver] = [
path(route="", view=views.index, name="index"),
path(route="test/", view=views.test_webhook, name="test"),
]