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

View File

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