mirror of
https://github.com/netbox-community/netbox.git
synced 2025-07-19 09:53:34 -06:00
Fix ObjectChangeLogView
This commit is contained in:
parent
067e89f6a0
commit
58f4e3756c
@ -257,7 +257,8 @@ class ObjectChangeLogView(View):
|
|||||||
def get(self, request, model, **kwargs):
|
def get(self, request, model, **kwargs):
|
||||||
|
|
||||||
# Get object my model and kwargs (e.g. slug='foo')
|
# Get object my model and kwargs (e.g. slug='foo')
|
||||||
obj = get_object_or_404(model, **kwargs)
|
queryset = model.objects.restrict(request.user, 'view')
|
||||||
|
obj = get_object_or_404(queryset, **kwargs)
|
||||||
|
|
||||||
# Gather all changes for this object (and its related objects)
|
# Gather all changes for this object (and its related objects)
|
||||||
content_type = ContentType.objects.get_for_model(model)
|
content_type = ContentType.objects.get_for_model(model)
|
||||||
|
Loading…
Reference in New Issue
Block a user