Public Access
Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 88acf57278 | |||
| ac293fd038 |
@@ -127,7 +127,7 @@ class ClientDashboardCli extends CliFramework
|
||||
$name = $repo['name'] ?? '';
|
||||
|
||||
if (
|
||||
!str_starts_with($name, 'client-waas-')
|
||||
!str_starts_with($name, 'client-waas-') && !str_starts_with($name, 'client-mokosuite-')
|
||||
|| !empty($repo['archived'])
|
||||
) {
|
||||
continue;
|
||||
@@ -135,7 +135,7 @@ class ClientDashboardCli extends CliFramework
|
||||
|
||||
$clients[] = [
|
||||
'repo' => $repo['full_name'] ?? '',
|
||||
'name' => str_replace('client-waas-', '', $name),
|
||||
'name' => str_replace(['client-waas-', 'client-mokosuite-'], '', $name),
|
||||
'description' => $repo['description'] ?? '',
|
||||
'updated' => $repo['updated_at'] ?? '',
|
||||
'url' => $repo['html_url'] ?? '',
|
||||
|
||||
@@ -79,7 +79,7 @@ class ClientInventoryCli extends CliFramework
|
||||
foreach ($repos as $repo) {
|
||||
$repoName = $repo['name'] ?? '';
|
||||
|
||||
if (strpos($repoName, 'client-waas') === false) {
|
||||
if (strpos($repoName, 'client-waas') === false && strpos($repoName, 'client-mokosuite') === false) {
|
||||
continue;
|
||||
}
|
||||
|
||||
|
||||
@@ -87,7 +87,7 @@ class ClientProvisionCli extends CliFramework
|
||||
return 1;
|
||||
}
|
||||
|
||||
$this->repoName = 'client-waas-' . $clientName;
|
||||
$this->repoName = 'client-mokosuite-' . $clientName;
|
||||
|
||||
$this->log('INFO', "=== Client Provisioning: {$clientName} ===");
|
||||
$this->log('INFO', " Org: {$this->org}");
|
||||
|
||||
Reference in New Issue
Block a user