micro_service_placeholder/microService/security/views.py

5 lines
214 B
Python
Raw Normal View History

2024-11-30 05:34:13 +00:00
from rest_framework_simplejwt.views import TokenRefreshView
from .serializers import CustomTokenRefreshSerializer
class CustomTokenRefreshView(TokenRefreshView):
serializer_class = CustomTokenRefreshSerializer