add register_admin to abx hookspec

This commit is contained in:
Nick Sweeting 2024-10-14 15:35:44 -07:00
parent 4634cd6c8e
commit a7c19a5da0
No known key found for this signature in database
2 changed files with 8 additions and 0 deletions

View file

@ -110,6 +110,11 @@ def register_checks():
"""Register django checks with django system checks system"""
pass
@hookspec
def register_admin(admin_site):
"""Register django admin views/models with the main django admin site instance"""
pass
###########################################################################################