From c82d45689c99b988766cc0e9b9ef10b449454c7a Mon Sep 17 00:00:00 2001 From: Daniel Quinn Date: Sun, 11 Jun 2017 01:23:08 +0100 Subject: [PATCH] Remove unused imports & comments --- src/paperless/urls.py | 21 +-------------------- 1 file changed, 1 insertion(+), 20 deletions(-) diff --git a/src/paperless/urls.py b/src/paperless/urls.py index 8348eef4f..db55ad0d3 100644 --- a/src/paperless/urls.py +++ b/src/paperless/urls.py @@ -1,19 +1,3 @@ -"""paperless URL Configuration - -The `urlpatterns` list routes URLs to views. For more information please see: - https://docs.djangoproject.com/en/1.10/topics/http/urls/ -Examples: -Function views - 1. Add an import: from my_app import views - 2. Add a URL to urlpatterns: url(r'^$', views.home, name='home') -Class-based views - 1. Add an import: from other_app.views import Home - 2. Add a URL to urlpatterns: url(r'^$', Home.as_view(), name='home') -Including another URLconf - 1. Add an import: from blog import urls as blog_urls - 2. Import the include() function: from django.conf.urls import url, include - 3. Add a URL to urlpatterns: url(r'^blog/', include(blog_urls)) -""" from django.conf import settings from django.conf.urls import url, static, include from django.contrib import admin @@ -21,7 +5,7 @@ from django.contrib import admin from rest_framework.routers import DefaultRouter from documents.views import ( - IndexView, FetchView, PushView, + FetchView, PushView, CorrespondentViewSet, TagViewSet, DocumentViewSet, LogViewSet ) from reminders.views import ReminderViewSet @@ -42,9 +26,6 @@ urlpatterns = [ ), url(r"^api/", include(router.urls, namespace="drf")), - # Normal pages (coming soon) - # url(r"^$", IndexView.as_view(), name="index"), - # File downloads url( r"^fetch/(?Pdoc|thumb)/(?P\d+)$",