Skip to content
Snippets Groups Projects
Verified Commit 60aeb2bc authored by Karel van Klink's avatar Karel van Klink :smiley_cat:
Browse files

make enums consistens with db again

parent 4e7542a6
No related branches found
No related tags found
1 merge request!47make enums consistens with db again
Pipeline #83735 passed
...@@ -11,20 +11,20 @@ from gso.products.product_blocks.site import SiteBlock, SiteBlockInactive, SiteB ...@@ -11,20 +11,20 @@ from gso.products.product_blocks.site import SiteBlock, SiteBlockInactive, SiteB
class DeviceVendor(strEnum): class DeviceVendor(strEnum):
"""Enumerator for the different product vendors that are supported.""" """Enumerator for the different product vendors that are supported."""
JUNIPER = "Juniper" JUNIPER = "juniper"
"""Juniper devices.""" """Juniper devices."""
NOKIA = "Nokia" NOKIA = "nokia"
"""Nokia devices.""" """Nokia devices."""
class DeviceRole(strEnum): class DeviceRole(strEnum):
"""Enumerator for the different types of routers.""" """Enumerator for the different types of routers."""
P = "P" P = "p"
"""P router.""" """P router."""
PE = "PE" PE = "pe"
"""PE router.""" """PE router."""
AMT = "AMT" AMT = "amt"
"""AMT router.""" """AMT router."""
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment