mirror of
https://gitlab.ub.uni-bielefeld.de/sfb1288inf/nopaque.git
synced 2024-11-15 01:05:42 +00:00
11 lines
246 B
Python
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)
|