fix(ui): make sure file mounts do not showing the encrypted values

This commit is contained in:
peaklabs-dev 2025-01-30 14:16:27 +01:00
parent edddbc8536
commit 429453af36
No known key found for this signature in database

View file

@ -7,6 +7,12 @@
class LocalFileVolume extends BaseModel
{
protected $casts = [
'fs_path' => 'encrypted',
'mount_path' => 'encrypted',
'content' => 'encrypted',
];
use HasFactory;
protected $guarded = [];