diff --git a/app/Models/PrivateKey.php b/app/Models/PrivateKey.php index 7c242dbb6..82858ff22 100644 --- a/app/Models/PrivateKey.php +++ b/app/Models/PrivateKey.php @@ -15,7 +15,7 @@ class PrivateKey extends BaseModel static public function ownedByCurrentTeam(array $select = ['*']) { $selectArray = collect($select)->concat(['id']); - return PrivateKey::whereTeamId(session('currentTeam')->id)->where('id', '>', 0)->select($selectArray->all()); + return PrivateKey::whereTeamId(session('currentTeam')->id)->select($selectArray->all()); } public function applications() { diff --git a/config/version.php b/config/version.php index d7596da3e..14b1389a5 100644 --- a/config/version.php +++ b/config/version.php @@ -1,3 +1,3 @@