1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

Closes #7812: Enable change logging for image attachments

This commit is contained in:
jeremystretch
2021-11-17 11:49:11 -05:00
parent b7b5a5788f
commit 424ac29131
4 changed files with 29 additions and 2 deletions

View File

@ -150,7 +150,7 @@ class ImageAttachmentSerializer(ValidatedModelSerializer):
model = ImageAttachment
fields = [
'id', 'url', 'display', 'content_type', 'object_id', 'parent', 'name', 'image', 'image_height',
'image_width', 'created',
'image_width', 'created', 'last_updated',
]
def validate(self, data):