Skip to content

Commit

Permalink
removing anchors from path()
Browse files Browse the repository at this point in the history
  • Loading branch information
RuthShryock committed Feb 8, 2024
1 parent bef5f45 commit e284485
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion onadata/apps/main/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
re_path('^api/v1/', include(router.urls)),
re_path('^api/v1/', include(router_with_patch_list.urls)),
re_path(r'^service_health/$', service_health),
path(r'^service_health/minimal/$', service_health_minimal, name='service-health-minimal'),
path(r'service_health/minimal/', service_health_minimal, name='service-health-minimal'),
re_path(r'^api/', RedirectView.as_view(url='/api/v1/')),
re_path(r'^api/v1', RedirectView.as_view(url='/api/v1/')),

Expand Down

0 comments on commit e284485

Please sign in to comment.