From fb4511d09963e7b86809d0e3511bb290d2531fa8 Mon Sep 17 00:00:00 2001 From: jeremystretch Date: Wed, 22 Dec 2021 10:55:06 -0500 Subject: [PATCH] Fixes #8140: Restore missing fields on wireless LAN & link REST API serializers --- docs/release-notes/version-3.1.md | 1 + netbox/wireless/api/serializers.py | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/release-notes/version-3.1.md b/docs/release-notes/version-3.1.md index 40abe7e15..618da9411 100644 --- a/docs/release-notes/version-3.1.md +++ b/docs/release-notes/version-3.1.md @@ -16,6 +16,7 @@ * [#8131](https://github.com/netbox-community/netbox/issues/8131) - Restore annotation of available IPs under prefix IPs view * [#8134](https://github.com/netbox-community/netbox/issues/8134) - Fix bulk editing of objects within dynamic tables * [#8139](https://github.com/netbox-community/netbox/issues/8139) - Fix rendering of table configuration form under VM interfaces view +* [#8140](https://github.com/netbox-community/netbox/issues/8140) - Restore missing fields on wireless LAN & link REST API serializers --- diff --git a/netbox/wireless/api/serializers.py b/netbox/wireless/api/serializers.py index 68e8181f1..f1fa6d58d 100644 --- a/netbox/wireless/api/serializers.py +++ b/netbox/wireless/api/serializers.py @@ -40,6 +40,7 @@ class WirelessLANSerializer(PrimaryModelSerializer): model = WirelessLAN fields = [ 'id', 'url', 'display', 'ssid', 'description', 'group', 'vlan', 'auth_type', 'auth_cipher', 'auth_psk', + 'description', 'tags', 'custom_fields', 'created', 'last_updated', ] @@ -55,5 +56,5 @@ class WirelessLinkSerializer(PrimaryModelSerializer): model = WirelessLink fields = [ 'id', 'url', 'display', 'interface_a', 'interface_b', 'ssid', 'status', 'description', 'auth_type', - 'auth_cipher', 'auth_psk', + 'auth_cipher', 'auth_psk', 'description', 'tags', 'custom_fields', 'created', 'last_updated', ]