Skip to content

Commit

Permalink
Remove re_path from storage_service/urls.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Dhwaniartefact committed Mar 26, 2024
1 parent e945a5b commit 07170f3
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions storage_service/storage_service/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
from django.contrib import admin
from django.urls import include
from django.urls import path
from django.urls import re_path
from django.views.generic import TemplateView

from storage_service import views
Expand All @@ -15,7 +14,7 @@
urlpatterns = [
path("", TemplateView.as_view(template_name="index.html")),
# Uncomment the next line to enable the admin:
re_path(r"^admin/", admin.site.urls),
path("admin/", admin.site.urls),
path("", include(locations.urls)),
path("administration/", include(administration.urls)),
path("api/", include(locations.api.urls)),
Expand Down

0 comments on commit 07170f3

Please sign in to comment.