aboutsummaryrefslogtreecommitdiff
path: root/config/base_urls.py
blob: 84dd56d6ee2c74776364c54d7c00d9384011cd38 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
from django.contrib import admin
from django.urls import path
from django.views.generic.base import RedirectView
from django.conf.urls import include, url
from django.conf.urls.static import static
from django.conf import settings

from django_registration.backends.activation.views import RegistrationView
from rest_framework import routers

from pages.views import PageDetailView
from notes.views import NoteViewSet, FolderViewSet, NoteListView
from accounts.forms import UserForm

router = routers.DefaultRouter()
router.register(r'<str:user>/notes/folder/', FolderViewSet, basename="folder-api")
router.register(r'<str:user>/notes/', NoteViewSet, basename="notes-api")

urlpatterns = static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT) + static(settings.STATIC_URL, document_root=settings.STATIC_ROOT)
urlpatterns += [
    path('admin/', admin.site.urls),
    path(r'accounts/', include('django_registration.backends.activation.urls')),
    path(r'accounts/', include('django.contrib.auth.urls')),
    path(r'register/', RegistrationView.as_view(form_class=UserForm), name='django_registration_register',),
    path(r'settings/', include('accounts.urls')),
    path(r'', include('django_registration.backends.activation.urls')),
    path(r'', include('django.contrib.auth.urls')),
    path(r'', include('notes.urls')),
    path(r'<slug>', PageDetailView.as_view(), name="pages"),
    path(r'<path>/<slug>/', PageDetailView.as_view(), name="pages"),
    path(r'api/', include(router.urls)),
    path(r'api-auth/', include('rest_framework.urls', namespace='rest_framework'))
]