This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
2019-10-10 12:05:16 +00:00
|
|
|
"""recovery views"""
|
|
|
|
|
|
|
|
from django.urls import path
|
|
|
|
|
|
|
|
from passbook.recovery.views import UseNonceView
|
|
|
|
|
|
|
|
urlpatterns = [
|
2019-12-31 11:51:16 +00:00
|
|
|
path("use-nonce/<uuid:uuid>/", UseNonceView.as_view(), name="use-nonce"),
|
2019-10-10 12:05:16 +00:00
|
|
|
]
|