mirror of
https://github.com/nottinghamtec/PyRIGS.git
synced 2026-01-17 13:32:15 +00:00
9 lines
208 B
Python
9 lines
208 B
Python
class AssetIDConverter: # Forces lowercase to uppercase
|
|
regex = '[^/]+'
|
|
|
|
def to_python(self, value):
|
|
return str(value).upper()
|
|
|
|
def to_url(self, value):
|
|
return str(value).upper()
|