Skip to content

Commit

Permalink
add pong url route
Browse files Browse the repository at this point in the history
  • Loading branch information
fgregg committed Nov 1, 2023
1 parent fed308a commit da3deeb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion asset_dashboard/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
ProjectUpdateView, ProjectListJson, ProjectDeleteView, \
ProjectsByDistrictListView, ProjectsByDistrictListJson, \
PhaseCreateView, PhaseUpdateView, \
AssetAddEditView, PhaseDeleteView, FundingStreamDeleteView\
AssetAddEditView, PhaseDeleteView, FundingStreamDeleteView, pong\


# Routers provide an easy way of automatically determining the URL conf.
Expand Down Expand Up @@ -59,6 +59,7 @@
path('accounts/logout/', auth_views.LogoutView.as_view(), name='logout'),
path('', include(router.urls)),
path('admin/', admin.site.urls),
path('pong/', pong),
]

handler404 = 'asset_dashboard.views.page_not_found'
Expand Down

0 comments on commit da3deeb

Please sign in to comment.