mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-11-10 10:02:33 +03:00
Return password
This commit is contained in:
parent
57c9aa38a3
commit
1cb5a2288c
1 changed files with 3 additions and 1 deletions
|
@ -96,6 +96,8 @@ class Instance
|
||||||
|
|
||||||
// Admin
|
// Admin
|
||||||
|
|
||||||
|
$password = 'administrator';
|
||||||
|
|
||||||
$this->CI->admins_model->save([
|
$this->CI->admins_model->save([
|
||||||
'first_name' => 'John',
|
'first_name' => 'John',
|
||||||
'last_name' => 'Doe',
|
'last_name' => 'Doe',
|
||||||
|
@ -103,7 +105,7 @@ class Instance
|
||||||
'phone_number' => '+10000000000',
|
'phone_number' => '+10000000000',
|
||||||
'settings' => [
|
'settings' => [
|
||||||
'username' => 'administrator',
|
'username' => 'administrator',
|
||||||
'password' => 'administrator',
|
'password' => $password,
|
||||||
'notifications' => true,
|
'notifications' => true,
|
||||||
'calendar_view' => CALENDAR_VIEW_DEFAULT
|
'calendar_view' => CALENDAR_VIEW_DEFAULT
|
||||||
]
|
]
|
||||||
|
|
Loading…
Reference in a new issue