mirror of
https://github.com/more-tech4-magnum-opus/backend.git
synced 2024-11-22 19:46:34 +03:00
34 lines
957 B
Python
34 lines
957 B
Python
from django.urls import path, include
|
|
from rest_framework_simplejwt.views import TokenObtainPairView, TokenRefreshView
|
|
|
|
from marketplace.api.views import ListCreateProductApi, RetireUpdateDestroyProductApi
|
|
|
|
urlpatterns = [
|
|
path(
|
|
"auth/",
|
|
include(
|
|
[
|
|
path("token/", TokenObtainPairView.as_view(), name="token_obtain_pair"),
|
|
path("refresh/", TokenRefreshView.as_view(), name="token_refresh"),
|
|
]
|
|
),
|
|
),
|
|
path(
|
|
"marketplace/",
|
|
include(
|
|
[
|
|
path(
|
|
"product/",
|
|
ListCreateProductApi.as_view(),
|
|
name="list_create_product",
|
|
),
|
|
path(
|
|
"product/<str:slug>",
|
|
RetireUpdateDestroyProductApi.as_view(),
|
|
name="get_update_destroy_product",
|
|
),
|
|
]
|
|
),
|
|
),
|
|
]
|