From f4532dd4ab0440afdb1e484a0f3bca5aee045e35 Mon Sep 17 00:00:00 2001 From: Adam Brutsaert Date: Thu, 4 Jul 2024 14:28:13 +0000 Subject: [PATCH] Closes #16817: Added 200 & 400 Gbps selections for circuit commit rate --- netbox/circuits/choices.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/netbox/circuits/choices.py b/netbox/circuits/choices.py index 6648352a1..e2d345581 100644 --- a/netbox/circuits/choices.py +++ b/netbox/circuits/choices.py @@ -38,6 +38,8 @@ class CircuitCommitRateChoices(ChoiceSet): (25000000, '25 Gbps'), (40000000, '40 Gbps'), (100000000, '100 Gbps'), + (200000000, '200 Gbps'), + (400000000, '400 Gbps'), (1544, 'T1 (1.544 Mbps)'), (2048, 'E1 (2.048 Mbps)'), ]