Closes #17318: Include provider in nested API representation of circuits

This commit is contained in:
Jeremy Stretch
2024-08-30 12:09:45 -04:00
parent af93b47f94
commit b797fcc03d
2 changed files with 2 additions and 4 deletions

View File

@@ -92,7 +92,7 @@ class CircuitTypeTest(APIViewTestCases.APIViewTestCase):
class CircuitTest(APIViewTestCases.APIViewTestCase):
model = Circuit
brief_fields = ['cid', 'description', 'display', 'id', 'url']
brief_fields = ['cid', 'description', 'display', 'id', 'provider', 'url']
bulk_update_data = {
'status': 'planned',
}