diff --git a/netbox/users/constants.py b/netbox/users/constants.py index 6a997073c..dbb01df22 100644 --- a/netbox/users/constants.py +++ b/netbox/users/constants.py @@ -5,7 +5,7 @@ from django.db.models import Q OBJECTPERMISSION_OBJECT_TYPES = Q( ~Q(app_label__in=['account', 'admin', 'auth', 'contenttypes', 'sessions', 'taggit', 'users']) | - Q(app_label='users', model__in=['objectpermission', 'token', 'group', 'user']) + Q(app_label='users', model__in=['objectpermission', 'token', 'group', 'user', 'owner']) ) CONSTRAINT_TOKEN_USER = '$user'