DevClad-Inc / devclad

Missing module/function docstring PY-D0003
Documentation
Minor
3 occurrences in this check
Docstring missing for refresh_op
114        return response
115
116    # TODO Rename this here and in `post`
117    def refresh_op(self, response, cookie_name):118        cookie_secure = getattr(settings, "JWT_AUTH_SECURE", False)
119        cookie_httponly = getattr(settings, "JWT_AUTH_HTTPONLY", True)
120        cookie_samesite = getattr(settings, "JWT_AUTH_SAMESITE", "Lax")
Docstring missing for post
106
107
108class RefreshToken(TokenRefreshView):
109    def post(self, request, *args, **kwargs):110        response = super().post(request, *args, **kwargs)
111        cookie_name = getattr(settings, "JWT_AUTH_COOKIE", None)
112        if cookie_name and response.status_code == 200 and "access" in response.data:
Docstring missing for get_response_op
 72        return response
 73
 74    # TODO Rename this here and in `get_response`
 75    def get_response_op(self, response, refresh_token_expiration): 76        cookie_name = getattr(settings, "JWT_AUTH_COOKIE", None)
 77        access_token_expiration = timezone.now() + jwt_settings.ACCESS_TOKEN_LIFETIME
 78        cookie_secure = getattr(settings, "JWT_AUTH_SECURE", False)