Skip to content

Commit

Permalink
Added 'me' path in User API urls
Browse files Browse the repository at this point in the history
  • Loading branch information
chloend committed Aug 24, 2024
1 parent 0661063 commit 0b5ce6f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion app/user/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,6 @@

urlpatterns = [
path('create/', views.CreateUserView.as_view(), name='create'),
path('token/', views.CreateTokenView.as_view(), name='token')
path('token/', views.CreateTokenView.as_view(), name='token'),
path('me/', views.ManageUserView.as_view(), name='me'),
]

0 comments on commit 0b5ce6f

Please sign in to comment.