27 lines
894 B
Python
27 lines
894 B
Python
from django.conf import settings
|
|
from django.conf.urls import include, url
|
|
from django.views.generic import RedirectView
|
|
|
|
from openslides.mediafiles.views import protected_serve
|
|
from openslides.utils.rest_api import router
|
|
|
|
from .core import views as core_views
|
|
|
|
|
|
urlpatterns = [
|
|
# URLs for /media/
|
|
url(
|
|
r"^%s(?P<path>.*)$" % settings.MEDIA_URL.lstrip("/"),
|
|
protected_serve,
|
|
{"document_root": settings.MEDIA_ROOT},
|
|
),
|
|
# URLs for the rest system, redirect /rest to /rest/
|
|
url(r"^rest$", RedirectView.as_view(url="/rest/", permanent=True)),
|
|
url(r"^rest/", include(router.urls)),
|
|
# Other urls defined by modules and plugins
|
|
url(r"^apps/", include("openslides.urls_apps")),
|
|
# Main entry point for all angular pages.
|
|
# Has to be the last entry in the urls.py
|
|
url(r"^(?P<path>.*)$", core_views.IndexView.as_view(), name="index"),
|
|
]
|