netbox/netbox/utilities/converters.py

9 lines
158 B
Python

class JSONOrYAMLConverter:
regex = '.json|.yaml'
def to_python(self, value):
return value
def to_url(self, value):
return value