(self, request: Request)
| 72 | |
| 73 | responses=UserProfileAPI.get_response()) |
| 74 | def get(self, request: Request): |
| 75 | return result.success(UserProfileSerializer().profile(request.user, request.auth)) |
| 76 | |
| 77 | |
| 78 | class TestPermissionsUserView(APIView): |
nothing calls this directly
no test coverage detected