DRF 프로필 수정, 비밀번호 변경 Profile Update, Change Paswword
DRF를 사용하여 프로필 수정 및 비밀번호 변경 API 구현해보기
프로필은 닉네임, 이메일 (이메일 중복 검사), 프로필 이미지 변경을 할것이다.
1. url 설정
from django.urls import path
from . import views
urlpatterns = [
```
path('profile/<int:pk>/update/', views.ProfileUpdateAPIView.as_view(), name='profile...
yeonnan.hashnode.dev2 min read