-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
core: urls: remove duplicate calls to maintainer endpoints
Forgot to remove them during the migration
- Loading branch information
1 parent
56fc13e
commit de73bf6
Showing
1 changed file
with
1 addition
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,7 @@ | ||
from django.urls import path | ||
|
||
from .views import ( | ||
AdminStatisticsView, | ||
BuildDeleteView, | ||
DeviceDetailView, | ||
MaintainerDashboardView, | ||
build_enabled_status_modify, | ||
) | ||
from .views import AdminStatisticsView | ||
|
||
urlpatterns = [ | ||
# Maintainers | ||
path( | ||
"maintainers/", MaintainerDashboardView.as_view(), name="maintainer_dashboard" | ||
), | ||
path( | ||
"maintainers/device/<int:pk>/", DeviceDetailView.as_view(), name="device_detail" | ||
), | ||
path( | ||
"maintainers/build/<int:pk>/enabled_status_modify/", | ||
build_enabled_status_modify, | ||
name="build_enabled_status_modify", | ||
), | ||
path( | ||
"maintainers/build/<int:pk>/delete/", | ||
BuildDeleteView.as_view(), | ||
name="build_delete", | ||
), | ||
# Admins | ||
path("admins/statistics/", AdminStatisticsView.as_view(), name="admin_statistics"), | ||
] |