Skip to content

Commit

Permalink
Closes #6387: Add xDSL interface type
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremystretch committed Sep 14, 2021
1 parent a6e79a1 commit 2ba6a6f
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
1 change: 1 addition & 0 deletions docs/release-notes/version-3.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

### Enhancements

* [#6387](https://github.com/netbox-community/netbox/issues/6387) - Add xDSL interface type
* [#7239](https://github.com/netbox-community/netbox/issues/7239) - Redirect global search to filtered object list when an object type is selected

### Bug Fixes
Expand Down
9 changes: 9 additions & 0 deletions netbox/dcim/choices.py
Original file line number Diff line number Diff line change
Expand Up @@ -761,6 +761,9 @@ class InterfaceTypeChoices(ChoiceSet):
TYPE_T3 = 't3'
TYPE_E3 = 'e3'

# ATM/DSL
TYPE_XDSL = 'xdsl'

# Stacking
TYPE_STACKWISE = 'cisco-stackwise'
TYPE_STACKWISE_PLUS = 'cisco-stackwise-plus'
Expand Down Expand Up @@ -885,6 +888,12 @@ class InterfaceTypeChoices(ChoiceSet):
(TYPE_E3, 'E3 (34 Mbps)'),
)
),
(
'ATM',
(
(TYPE_XDSL, 'xDSL'),
)
),
(
'Stacking',
(
Expand Down

0 comments on commit 2ba6a6f

Please sign in to comment.