зеркало из https://github.com/docker/kitematic.git
Added larger set for org and user repo - fixes 1158
Signed-off-by: French Ben <me+git@frenchben.com>
This commit is contained in:
Родитель
e533ed35d2
Коммит
736673776b
|
@ -137,7 +137,7 @@ module.exports = {
|
|||
// Get Orgs for user
|
||||
hubUtil.request({
|
||||
url: `${REGHUB2_ENDPOINT}/user/orgs/`,
|
||||
qs: { page_size: 50 }
|
||||
qs: { page_size: 1000 }
|
||||
}, (orgError, orgResponse, orgBody) => {
|
||||
if (orgError) {
|
||||
repositoryServerActions.error({orgError});
|
||||
|
@ -178,7 +178,8 @@ module.exports = {
|
|||
|
||||
async.map(namespaces, (namespace, cb) => {
|
||||
hubUtil.request({
|
||||
url: `${REGHUB2_ENDPOINT}/repositories/${namespace}`
|
||||
url: `${REGHUB2_ENDPOINT}/repositories/${namespace}`,
|
||||
qs: { page_size: 1000 }
|
||||
}, (error, response, body) => {
|
||||
if (error) {
|
||||
repositoryServerActions.error({error});
|
||||
|
|
Загрузка…
Ссылка в новой задаче