Added cast for 'public' field (#1085)
The missing cast was resulting in the API to send a 0 or 1 instead of true or false for the public field
This commit is contained in:
parent
b65b795127
commit
56478d81da
1 changed files with 1 additions and 0 deletions
|
@ -48,6 +48,7 @@ class Node extends Model implements CleansAttributes, ValidableContract
|
||||||
'daemonListen' => 'integer',
|
'daemonListen' => 'integer',
|
||||||
'daemonSFTP' => 'integer',
|
'daemonSFTP' => 'integer',
|
||||||
'behind_proxy' => 'boolean',
|
'behind_proxy' => 'boolean',
|
||||||
|
'public' => 'boolean',
|
||||||
];
|
];
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in a new issue