Merge branch 'master' of ssh://bitbucket.org/yackob03/quay

Conflicts:
	static/js/controllers.js
This commit is contained in:
yackob03 2013-10-01 19:39:28 -04:00
commit 211fd6bcd7
8 changed files with 105 additions and 7 deletions

View file

@ -85,8 +85,9 @@ def create_repo_api():
pass
@app.route('/api/repository/find/<prefix>', methods=['GET'])
def match_repos_api(prefix):
@app.route('/api/find/repository', methods=['GET'])
def match_repos_api():
prefix = request.args.get('query', '')
def repo_view(repo):
return {
'namespace': repo.namespace,