chore: blacked
This commit is contained in:
@@ -4,13 +4,13 @@ from users.api.v1.views import retrieve_update_me, change_password
|
||||
from rest_framework_simplejwt.views import (
|
||||
token_refresh,
|
||||
token_obtain_pair,
|
||||
token_verify
|
||||
token_verify,
|
||||
)
|
||||
|
||||
urlpatterns = [
|
||||
path('login/', token_obtain_pair, name='login'),
|
||||
path('refresh/', token_refresh, name='refresh_jwt'),
|
||||
path('verify/', token_verify, name='verify_jwt'),
|
||||
path('me/', retrieve_update_me, name='user_info'),
|
||||
path('change-password/', change_password, name='change_password'),
|
||||
path("login/", token_obtain_pair, name="login"),
|
||||
path("refresh/", token_refresh, name="refresh_jwt"),
|
||||
path("verify/", token_verify, name="verify_jwt"),
|
||||
path("me/", retrieve_update_me, name="user_info"),
|
||||
path("change-password/", change_password, name="change_password"),
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user