Opened 13 years ago
Closed 9 years ago
#16867 closed New feature (fixed)
Validate GenericForeignKey's object_id_field/content_type_field options
Description (last modified by ) ¶
See #7800
The object_id_field
and content_type_field
options to GenericForeignKey
aren't validated by model validation, which means that if you make a mistake or typo weird stuff happens. ./manage.py validate
should complain about that.
I think this is probably blocking on the ability to plug into model validation since GFK's are in contrib and shouldn't have code in core.
Change History (3)
comment:1 by , 13 years ago
comment:2 by , 12 years ago
Description: | modified (diff) |
---|
comment:3 by , 9 years ago
Resolution: | → fixed |
---|---|
Status: | new → closed |
Type: | Bug → New feature |
Validation for these fields was added in Django 1.7 in the initial version of the checks framework, d818e0c9b2b88276cc499974f9eee893170bf0a8.
Yes, see #16283 for why validation of contrib.contenttypes stuff is problematic at the moment.