fix(ui): make sure file mounts do not showing the encrypted values
This commit is contained in:
parent
edddbc8536
commit
429453af36
1 changed files with 6 additions and 0 deletions
|
|
@ -7,6 +7,12 @@
|
|||
|
||||
class LocalFileVolume extends BaseModel
|
||||
{
|
||||
protected $casts = [
|
||||
'fs_path' => 'encrypted',
|
||||
'mount_path' => 'encrypted',
|
||||
'content' => 'encrypted',
|
||||
];
|
||||
|
||||
use HasFactory;
|
||||
|
||||
protected $guarded = [];
|
||||
|
|
|
|||
Loading…
Reference in a new issue