diff --git a/discovery-provider/src/api/v1/users.py b/discovery-provider/src/api/v1/users.py index 32e85ec31b8..4cdd4709c7b 100644 --- a/discovery-provider/src/api/v1/users.py +++ b/discovery-provider/src/api/v1/users.py @@ -957,7 +957,7 @@ def get(self, id: str): return success_response(support) -full_get_supporters_response = make_response( +full_get_supporters_response = make_full_response( "full_get_supporters", full_ns, fields.List(fields.Nested(supporter_response_full)) ) @@ -1009,7 +1009,7 @@ def get(self, id: str): return success_response(support) -full_get_supporting_response = make_response( +full_get_supporting_response = make_full_response( "full_get_supporting", full_ns, fields.List(fields.Nested(supporting_response_full)) )