Skip to content

Commit

Permalink
Fix format
Browse files Browse the repository at this point in the history
  • Loading branch information
Tansito committed Oct 27, 2023
1 parent cfcc6f1 commit 0e39423
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion gateway/main/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,10 @@
path("liveness/", probes.views.liveness, name="liveness"),
path("", include("django_prometheus.urls")),
re_path(r"^api/v1/", include(("api.v1.urls", "api"), namespace="v1")),
path("DomainVerification.html", TemplateView.as_view(template_name="DomainVerification.html")),
path(
"DomainVerification.html",
TemplateView.as_view(template_name="DomainVerification.html")
),
]

if settings.DEBUG:
Expand Down

0 comments on commit 0e39423

Please sign in to comment.