Let's assume that the Security Component in cakephp is enabled.
When creating a form, for example for user registration (/users/add), is it needed to use the $fieldList when saving the data in the controller:
$this->User->save($this->request->data, true, $fieldList);
Or the allowed fields are already defined and guarded by the Security Component?
Thank you!