Add base support for definining the number of backups that can be created for a server
This commit is contained in:
parent
bed51b5871
commit
f1c3762f4d
10 changed files with 65 additions and 23 deletions
|
@ -101,8 +101,9 @@ class BuildModificationService
|
|||
'threads' => array_get($data, 'threads'),
|
||||
'disk' => array_get($data, 'disk'),
|
||||
'allocation_id' => array_get($data, 'allocation_id'),
|
||||
'database_limit' => array_get($data, 'database_limit'),
|
||||
'allocation_limit' => array_get($data, 'allocation_limit'),
|
||||
'database_limit' => array_get($data, 'database_limit', 0),
|
||||
'allocation_limit' => array_get($data, 'allocation_limit', 0),
|
||||
'backup_limit' => array_get($data, 'backup_limit', 0),
|
||||
]);
|
||||
|
||||
$updateData = $this->structureService->handle($server);
|
||||
|
|
Reference in a new issue