mirror of
https://github.com/netbox-community/devicetype-library.git
synced 2024-11-25 09:54:10 +01:00
22 lines
430 B
Python
22 lines
430 B
Python
|
SCHEMAS = (
|
||
|
('device-types', 'devicetype.json'),
|
||
|
('module-types', 'moduletype.json'),
|
||
|
)
|
||
|
|
||
|
IMAGE_FILETYPES = (
|
||
|
'bmp', 'gif', 'pjp', 'jpg', 'pjpeg', 'jpeg', 'jfif', 'png', 'tif', 'tiff', 'webp'
|
||
|
)
|
||
|
|
||
|
COMPONENT_TYPES = (
|
||
|
'console-ports',
|
||
|
'console-server-ports',
|
||
|
'power-ports',
|
||
|
'power-outlets',
|
||
|
'interfaces',
|
||
|
'front-ports',
|
||
|
'rear-ports',
|
||
|
'device-bays',
|
||
|
'module-bays',
|
||
|
)
|
||
|
|
||
|
KNOWN_SLUGS = set()
|