v0.0.29 | 사이트 설정(SiteSettings) 모델 및 API 추가
All checks were successful
Build And Test / build-and-push (push) Successful in 2m1s
All checks were successful
Build And Test / build-and-push (push) Successful in 2m1s
- Google 로그인 활성화 여부 관리 기능 - 관리자 전용 설정 수정 API - 싱글톤 패턴으로 구현 Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
@ -12,6 +12,8 @@ from .views import (
|
||||
KVMServerActivateView, KVMServerSSHKeyView, KVMServerSSHKeyUploadView,
|
||||
# 소셜 로그인
|
||||
GoogleLoginView, GoogleLinkWithPasswordView, GoogleLinkView, GoogleUnlinkView,
|
||||
# 사이트 설정
|
||||
SiteSettingsView,
|
||||
)
|
||||
from rest_framework_simplejwt.views import TokenObtainPairView, TokenRefreshView, TokenVerifyView
|
||||
from .views_jwks import jwks_view # django-jwks
|
||||
@ -49,4 +51,6 @@ urlpatterns = [
|
||||
path('auth/google/link-with-password/', GoogleLinkWithPasswordView.as_view(), name='google_link_with_password'),
|
||||
path('auth/google/link/', GoogleLinkView.as_view(), name='google_link'),
|
||||
path('auth/google/unlink/', GoogleUnlinkView.as_view(), name='google_unlink'),
|
||||
# 사이트 설정
|
||||
path('settings/', SiteSettingsView.as_view(), name='site_settings'),
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user