Implement webhooks. Fixes #264

This commit is contained in:
Timothy Hobbs
2023-12-02 18:09:34 +00:00
parent 5e1fb838cb
commit e708281dcd
10 changed files with 294 additions and 7 deletions

View File

@ -8,3 +8,6 @@ class HelpdeskConfig(AppConfig):
# see:
# https://docs.djangoproject.com/en/3.2/ref/applications/#django.apps.AppConfig.default_auto_field
default_auto_field = 'django.db.models.AutoField'
def ready(self):
from . import webhooks # noqa: F401