mirror of
https://github.com/Rushilwiz/reinvest.git
synced 2025-04-05 04:50:19 -04:00
fix(backend): fixed urls.py
This commit is contained in:
parent
dc37793c70
commit
38577a83f7
|
@ -10,11 +10,11 @@ from rest_framework_simplejwt.views import (
|
|||
|
||||
urlpatterns = [
|
||||
path('charity/<int:pk>', views.CharityViewSet.as_view({'get': 'retrieve'})),
|
||||
path('charity/', views.CharityViewSet.as_view({'get': 'list', 'post': 'create'})),
|
||||
path('charity', views.CharityViewSet.as_view({'get': 'list', 'post': 'create'})),
|
||||
path('stock/<uuid:pk>', views.StockViewSet.as_view({'get': 'retrieve'})),
|
||||
path('stock/', views.StockViewSet.as_view({'get': 'list', 'post': 'create'})),
|
||||
path('stock', views.StockViewSet.as_view({'get': 'list', 'post': 'create'})),
|
||||
path('profile/create', views.UserProfileCreate.as_view()),
|
||||
path('profile/', views.UserProfileDetail.as_view()),
|
||||
path('token/', TokenObtainPairView.as_view(), name='token_obtain_pair'),
|
||||
path('profile', views.UserProfileDetail.as_view()),
|
||||
path('token', TokenObtainPairView.as_view(), name='token_obtain_pair'),
|
||||
path('token/refresh/', TokenRefreshView.as_view(), name='token_refresh'),
|
||||
]
|
||||
|
|
Loading…
Reference in New Issue
Block a user