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

Fixes #2191: Added missing static choices to circuits and DCIM API endpoints

This commit is contained in:
Jeremy Stretch
2018-06-29 13:17:07 -04:00
parent 3f019732b3
commit 28a2a37ed2
2 changed files with 3 additions and 2 deletions

View File

@@ -19,6 +19,7 @@ from . import serializers
class CircuitsFieldChoicesViewSet(FieldChoicesViewSet):
fields = (
(Circuit, ['status']),
(CircuitTermination, ['term_side']),
)