IdHub/oidc4vp/urls.py
Cayo Puigdefabregas a976b5bd16 view demand
2023-11-28 10:48:57 +01:00

13 lines
205 B
Python

from django.urls import path, reverse_lazy
from oidc4vp import views
app_name = 'oidc4vp'
urlpatterns = [
path('verify/', views.VerifyView.as_view(),
name="verification_portal_verify")
]