2019-10-10 13:05:16 +01:00
|
|
|
"""recovery views"""
|
|
|
|
|
|
|
|
from django.urls import path
|
|
|
|
|
2020-05-16 15:02:42 +01:00
|
|
|
from passbook.recovery.views import UseNonceView
|
2019-10-10 13:05:16 +01:00
|
|
|
|
|
|
|
urlpatterns = [
|
2020-05-16 15:02:42 +01:00
|
|
|
path("use-nonce/<uuid:uuid>/", UseNonceView.as_view(), name="use-nonce"),
|
2019-10-10 13:05:16 +01:00
|
|
|
]
|