Fix the repo search to include repos that you get through a team and repos for which you have admin on the org.

This commit is contained in:
yackob03 2013-11-07 22:44:18 -05:00
parent 52e82cfb10
commit d524559bce
3 changed files with 51 additions and 28 deletions

View file

@ -145,8 +145,7 @@ function RepoListCtrl($scope, Restangular, UserService) {
// Load the list of repositories.
var params = {
'limit': 10,
'public': true,
'public': false,
'sort': true,
'namespace': namespace
};
@ -236,7 +235,7 @@ function LandingCtrl($scope, $timeout, $location, Restangular, UserService, KeyS
// Load the list of repositories.
var params = {
'limit': 4,
'public': true,
'public': false,
'sort': true,
'namespace': namespace
};