mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-11-10 10:02:33 +03:00
White list the working plan and working plan exceptions when saving a provider record
This commit is contained in:
parent
5827a36d7a
commit
963413eb88
1 changed files with 16 additions and 5 deletions
|
@ -158,6 +158,8 @@ class Providers extends EA_Controller {
|
|||
$this->providers_model->only($provider['settings'], [
|
||||
'username',
|
||||
'password',
|
||||
'working_plan',
|
||||
'working_plan_exceptions',
|
||||
'notifications',
|
||||
'calendar_view'
|
||||
]);
|
||||
|
@ -217,6 +219,15 @@ class Providers extends EA_Controller {
|
|||
'services',
|
||||
]);
|
||||
|
||||
$this->providers_model->only($provider['settings'], [
|
||||
'username',
|
||||
'password',
|
||||
'working_plan',
|
||||
'working_plan_exceptions',
|
||||
'notifications',
|
||||
'calendar_view'
|
||||
]);
|
||||
|
||||
$this->providers_model->optional($provider, [
|
||||
'services' => [],
|
||||
]);
|
||||
|
|
Loading…
Reference in a new issue