Coverage for benefits/eligibility/urls.py: 100%
5 statements
« prev ^ index » next coverage.py v7.6.7, created at 2024-11-19 16:31 +0000
« prev ^ index » next coverage.py v7.6.7, created at 2024-11-19 16:31 +0000
1"""
2The eligibility application: URLConf for the eligibility verification flow.
3"""
5from django.urls import path
7from benefits.routes import routes
8from . import views
11app_name = "eligibility"
12urlpatterns = [
13 # /eligibility
14 path("", views.index, name=routes.name(routes.ELIGIBILITY_INDEX)),
15 path("start", views.start, name=routes.name(routes.ELIGIBILITY_START)),
16 path("confirm", views.confirm, name=routes.name(routes.ELIGIBILITY_CONFIRM)),
17 path("unverified", views.unverified, name=routes.name(routes.ELIGIBILITY_UNVERIFIED)),
18]