From 9874c52577116216536e18c946b1ac108c319767 Mon Sep 17 00:00:00 2001 From: Jeremy Stretch Date: Thu, 29 Jun 2023 07:55:40 -0400 Subject: [PATCH] Correct generic relation name --- netbox/netbox/models/features.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/netbox/netbox/models/features.py b/netbox/netbox/models/features.py index 0928e3f90..e07857145 100644 --- a/netbox/netbox/models/features.py +++ b/netbox/netbox/models/features.py @@ -309,7 +309,7 @@ class BookmarksMixin(models.Model): """ Enables support for user bookmarks. """ - images = GenericRelation( + bookmarks = GenericRelation( to='extras.Bookmark', content_type_field='object_type', object_id_field='object_id'