diff --git a/endpoints/v1/index.py b/endpoints/v1/index.py index b17a42f50..1d4ad2365 100644 --- a/endpoints/v1/index.py +++ b/endpoints/v1/index.py @@ -307,7 +307,7 @@ def conduct_repo_search(username, query, results): for repo in matching_repos: results.append({ - 'name': repo.name, + 'name': repo.namespace_user.username + '/' + repo.name, 'description': repo.description, 'is_public': repo.is_public, 'href': '/repository/' + repo.namespace_user.username + '/' + repo.name