add missing field to Node.php comment

This commit is contained in:
Matthew Penner 2021-01-30 13:55:13 -07:00
parent be1b05e0ec
commit 1c8143ad9d
2 changed files with 2 additions and 1 deletions

View file

@ -35,6 +35,7 @@ use Illuminate\Contracts\Encryption\Encrypter;
* @property \Pterodactyl\Models\Mount[]|\Illuminate\Database\Eloquent\Collection $mounts * @property \Pterodactyl\Models\Mount[]|\Illuminate\Database\Eloquent\Collection $mounts
* @property \Pterodactyl\Models\Server[]|\Illuminate\Database\Eloquent\Collection $servers * @property \Pterodactyl\Models\Server[]|\Illuminate\Database\Eloquent\Collection $servers
* @property \Pterodactyl\Models\Allocation[]|\Illuminate\Database\Eloquent\Collection $allocations * @property \Pterodactyl\Models\Allocation[]|\Illuminate\Database\Eloquent\Collection $allocations
* @property \Pterodactyl\Models\DatabaseHost $databaseHost
*/ */
class Node extends Model class Node extends Model
{ {

View file

@ -1,7 +1,7 @@
import React from 'react'; import React from 'react';
import AdminBox from '@/components/admin/AdminBox'; import AdminBox from '@/components/admin/AdminBox';
import tw from 'twin.macro'; import tw from 'twin.macro';
import { number, object, string } from 'yup'; import { object, string } from 'yup';
import updateNode from '@/api/admin/nodes/updateNode'; import updateNode from '@/api/admin/nodes/updateNode';
import Button from '@/components/elements/Button'; import Button from '@/components/elements/Button';
import Field from '@/components/elements/Field'; import Field from '@/components/elements/Field';