show webhooks config in django admin

This commit is contained in:
Nick Sweeting 2024-05-06 07:13:54 -07:00
parent f067451267
commit 47666ec26b
No known key found for this signature in database
2 changed files with 7 additions and 4 deletions

View file

@ -404,9 +404,9 @@ LOGGING = {
SIGNAL_WEBHOOKS = {
"HOOKS": {
"django.contrib.auth.models.User": ...,
"core.models.Snapshot": "...",
"core.models.ArchiveResult": "...",
"core.models.Tag": "...",
"api.models.APIToken": "...",
"core.models.Snapshot": ...,
"core.models.ArchiveResult": ...,
"core.models.Tag": ...,
"api.models.APIToken": ...,
},
}