fix: Add newline character to private key before saving

This commit is contained in:
Andras Bacsai 2024-07-05 13:35:51 +02:00
parent f58a1a9ecf
commit 311c118834

View File

@ -14,6 +14,17 @@ class PrivateKey extends BaseModel
'team_id',
];
protected static function booted()
{
static::saving(function ($key) {
$privateKey = data_get($key, 'private_key');
if (substr($privateKey, -1) !== "\n") {
$key->private_key = $privateKey."\n";
}
});
}
public static function ownedByCurrentTeam(array $select = ['*'])
{
$selectArray = collect($select)->concat(['id']);