mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-12-09 16:25:33 +01:00
I bought this logo from the excellent logojoy.com site, and am including the source files here to be covered under the project license (GPL).
65 lines
1.8 KiB
Python
65 lines
1.8 KiB
Python
from django.conf import settings
|
|
from django.conf.urls import include, static, url
|
|
from django.contrib import admin
|
|
from django.urls import reverse_lazy
|
|
from django.views.decorators.csrf import csrf_exempt
|
|
from django.views.generic import RedirectView
|
|
from rest_framework.routers import DefaultRouter
|
|
|
|
from paperless.views import FaviconView
|
|
from documents.views import (
|
|
CorrespondentViewSet,
|
|
DocumentViewSet,
|
|
FetchView,
|
|
LogViewSet,
|
|
PushView,
|
|
TagViewSet
|
|
)
|
|
from reminders.views import ReminderViewSet
|
|
|
|
router = DefaultRouter()
|
|
router.register(r"correspondents", CorrespondentViewSet)
|
|
router.register(r"documents", DocumentViewSet)
|
|
router.register(r"logs", LogViewSet)
|
|
router.register(r"reminders", ReminderViewSet)
|
|
router.register(r"tags", TagViewSet)
|
|
|
|
urlpatterns = [
|
|
|
|
# API
|
|
url(
|
|
r"^api/auth/",
|
|
include(
|
|
('rest_framework.urls', 'rest_framework'),
|
|
namespace="rest_framework")
|
|
),
|
|
url(r"^api/", include((router.urls, 'drf'), namespace="drf")),
|
|
|
|
# File downloads
|
|
url(
|
|
r"^fetch/(?P<kind>doc|thumb)/(?P<pk>\d+)$",
|
|
FetchView.as_view(),
|
|
name="fetch"
|
|
),
|
|
|
|
# File uploads
|
|
url(r"^push$", csrf_exempt(PushView.as_view()), name="push"),
|
|
|
|
# Favicon
|
|
url(r"^favicon.ico$", FaviconView.as_view(), name="favicon"),
|
|
|
|
# The Django admin
|
|
url(r"admin/", admin.site.urls),
|
|
|
|
# Redirect / to /admin
|
|
url(r"^$", RedirectView.as_view(
|
|
permanent=True, url=reverse_lazy("admin:index"))),
|
|
|
|
] + static.static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)
|
|
|
|
# Text in each page's <h1> (and above login form).
|
|
admin.site.site_header = 'Paperless'
|
|
# Text at the end of each page's <title>.
|
|
admin.site.site_title = 'Paperless'
|
|
# Text at the top of the admin index page.
|
|
admin.site.index_title = 'Paperless administration'
|