nopaque/app/utils.py
2021-11-30 16:22:16 +01:00

11 lines
246 B
Python

from app import hashids
from werkzeug.routing import BaseConverter
class HashidConverter(BaseConverter):
def to_python(self, value):
return hashids.decode(value)[0]
def to_url(self, value):
return hashids.encode(value)