from rest_framework_simplejwt.views import TokenObtainPairView

from apps.core.api.throttling import JWTObtainPairThrottle


class ThrottledTokenObtainPairView(TokenObtainPairView):
    """Token obtain with a dedicated per-IP throttle (PRD Table 65; stricter than general API)."""

    throttle_classes = [JWTObtainPairThrottle]
