13 lines
205 B
Python
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")
|
|
]
|