add new app
This commit is contained in:
13
core/apps/wherehouse/urls.py
Normal file
13
core/apps/wherehouse/urls.py
Normal file
@@ -0,0 +1,13 @@
|
||||
from django.urls import path, include
|
||||
|
||||
from core.apps.wherehouse.views import wherehouse as wherehouse_views
|
||||
|
||||
|
||||
urlpatterns = [
|
||||
path('wherehouse/', include(
|
||||
[
|
||||
path('list/', wherehouse_views.WhereHouseListApiView.as_view()),
|
||||
path('<uuid:id>/', wherehouse_views.WhereHouseDetailApiView.as_view()),
|
||||
]
|
||||
))
|
||||
]
|
||||
Reference in New Issue
Block a user