Implemented search page and fixed off-by-one in status

This commit is contained in:
david
2023-05-21 03:27:48 +02:00
parent 2ff71ac8da
commit f8013cc831
4 changed files with 16 additions and 8 deletions

View File

@@ -2,6 +2,6 @@ from django.urls import path, include
from . import views
urlpatterns = [
path('search/', views.searchAPI),
path('', include('sage_stream.api.urls')),
path('search/', views.searchAPI),
]