Merge pull request #4814 from peaklabs-dev/fix-system-wide-gh-apps

fix: instance wide GitHub apps
This commit is contained in:
Andras Bacsai 2025-01-13 12:45:20 +01:00 committed by GitHub
commit bc42429f7e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -247,8 +247,17 @@ public function privateKeys()
public function sources()
{
$sources = collect([]);
$github_apps = $this->hasMany(GithubApp::class)->whereisPublic(false)->get();
$gitlab_apps = $this->hasMany(GitlabApp::class)->whereisPublic(false)->get();
$github_apps = GithubApp::where(function ($query) {
$query->where('team_id', $this->id)
->Where('is_public', false)
->orWhere('is_system_wide', true);
})->get();
$gitlab_apps = GitlabApp::where(function ($query) {
$query->where('team_id', $this->id)
->Where('is_public', false)
->orWhere('is_system_wide', true);
})->get();
return $sources->merge($github_apps)->merge($gitlab_apps);
}