This commit is contained in:
Andras Bacsai
2023-05-09 09:54:43 +02:00
parent ec3fe284b6
commit bba8b25b48
14 changed files with 87 additions and 59 deletions

View File

@@ -22,6 +22,6 @@ class GithubApp extends BaseModel
}
static public function private()
{
return GithubApp::where('team_id', session('currentTeam')->id)->where('is_public', false)->whereNotNull('app_id')->whereNotNull('installation_id')->get();
return GithubApp::where('team_id', session('currentTeam')->id)->where('is_public', false)->get();
}
}