Browse Source

explain weird use of ellipses magic value

Nick Sweeting 1 year ago
parent
commit
913590ee39
1 changed files with 1 additions and 1 deletions
  1. 1 1
      archivebox/core/settings.py

+ 1 - 1
archivebox/core/settings.py

@@ -411,7 +411,7 @@ LOGGING = {
 # Add default webhook configuration to the User model
 # Add default webhook configuration to the User model
 SIGNAL_WEBHOOKS = {
 SIGNAL_WEBHOOKS = {
     "HOOKS": {
     "HOOKS": {
-        "django.contrib.auth.models.User": ...,
+        "django.contrib.auth.models.User": ...,  # ... is a special value that means "use the default autogenerated hooks"
         "core.models.Snapshot": ...,
         "core.models.Snapshot": ...,
         "core.models.ArchiveResult": ...,
         "core.models.ArchiveResult": ...,
         "core.models.Tag": ...,
         "core.models.Tag": ...,