ssh key등록 및 수정 기능 개선
All checks were successful
Build And Test / build-and-push (push) Successful in 2m46s

This commit is contained in:
2025-05-20 13:57:40 +09:00
parent 293003cf1c
commit 247b6b7fe7
3 changed files with 23 additions and 3 deletions

View File

@ -1,5 +1,5 @@
from django.urls import path
from .views import RegisterView, MeView, CustomTokenObtainPairView, SSHKeyUploadView
from .views import RegisterView, MeView, CustomTokenObtainPairView, SSHKeyUploadView, SSHKeyInfoView
from rest_framework_simplejwt.views import TokenObtainPairView, TokenRefreshView, TokenVerifyView
urlpatterns = [
@ -10,4 +10,5 @@ urlpatterns = [
path('verify/', TokenVerifyView.as_view(), name='token_verify'),
path('me/', MeView.as_view(), name='me'),
path("ssh-key/", SSHKeyUploadView.as_view(), name="ssh_key_upload"),
path("ssh-key/info/", SSHKeyInfoView.as_view(), name="ssh_key_info"),
]