(self, request: Request)
| 86 | responses=UserProfileAPI.get_response()) |
| 87 | @has_permissions(PermissionConstants.USER_EDIT, RoleConstants.ADMIN) |
| 88 | def get(self, request: Request): |
| 89 | return result.success(UserProfileSerializer().profile(request.user, request.auth)) |
| 90 | |
| 91 | |
| 92 | class SwitchUserLanguageView(APIView): |
nothing calls this directly
no test coverage detected