nopaque/app/utils.py
2021-12-07 14:18:05 +01:00

11 lines
270 B
Python

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