1
1
mirror of https://github.com/pterodactyl/panel.git synced 2024-10-26 21:02:28 +02:00

Public is just the boolean (#1101)

This commit is contained in:
Lance Pioch 2018-04-08 16:36:40 -04:00 committed by Dane Everitt
parent 28052d5943
commit ceff5acb85

View File

@ -41,7 +41,6 @@ class Node extends Model implements CleansAttributes, ValidableContract
* @var array
*/
protected $casts = [
'public' => 'integer',
'location_id' => 'integer',
'memory' => 'integer',
'disk' => 'integer',
@ -228,5 +227,4 @@ class Node extends Model implements CleansAttributes, ValidableContract
{
return $this->hasMany(Allocation::class);
}
}
}