Add info to array.

This commit is contained in:
James Cole
2021-05-02 14:52:25 +02:00
parent 2577e7301a
commit 2263aa4dbe
2 changed files with 4 additions and 0 deletions

View File

@@ -129,6 +129,9 @@ class UpdateRequest extends FormRequest
if ($this->has('apply_rules')) {
$data['apply_rules'] = $this->boolean('apply_rules', true);
}
if ($this->has('fire_webhooks')) {
$data['fire_webhooks'] = $this->boolean('fire_webhooks', true);
}
if ($this->has('group_title')) {
$data['group_title'] = $this->string('group_title');
}