first base of project-changed apps: Herd-livestock-tag-log-elasticsearch-
This commit is contained in:
10
apps/search/api/v1/urls.py
Normal file
10
apps/search/api/v1/urls.py
Normal file
@@ -0,0 +1,10 @@
|
||||
from django.urls import path, include
|
||||
from .api import SearchUserDocumentApiView
|
||||
from rest_framework import routers
|
||||
|
||||
router = routers.DefaultRouter()
|
||||
|
||||
urlpatterns = [
|
||||
path('', include(router.urls), name='search_user'),
|
||||
path('user_elastic/<str:query>/', SearchUserDocumentApiView.as_view()),
|
||||
]
|
||||
Reference in New Issue
Block a user