first commit
This commit is contained in:
9
backend/journal/urls.py
Normal file
9
backend/journal/urls.py
Normal file
@@ -0,0 +1,9 @@
|
||||
from django.urls import path
|
||||
|
||||
from .views import GuestbookCreateView, MemoryListView, StatusView
|
||||
|
||||
urlpatterns = [
|
||||
path("memories/", MemoryListView.as_view(), name="memory-list"),
|
||||
path("messages/", GuestbookCreateView.as_view(), name="guestbook-create"),
|
||||
path("status/", StatusView.as_view(), name="status"),
|
||||
]
|
||||
Reference in New Issue
Block a user