Revert back to the default password for simplicity

This commit is contained in:
Alex Tselegidis 2023-11-17 07:35:52 +01:00
parent fbcd35f197
commit 9e2c4827aa
1 changed files with 1 additions and 3 deletions

View File

@ -99,8 +99,6 @@ class Instance {
'company_link' => 'https://example.org', 'company_link' => 'https://example.org',
]); ]);
$password = random_string();
// Admin // Admin
$this->CI->admins_model->save([ $this->CI->admins_model->save([
@ -110,7 +108,7 @@ class Instance {
'phone_number' => '+10000000000', 'phone_number' => '+10000000000',
'settings' => [ 'settings' => [
'username' => 'administrator', 'username' => 'administrator',
'password' => $password, 'password' => 'administrator',
'notifications' => TRUE, 'notifications' => TRUE,
'calendar_view' => CALENDAR_VIEW_DEFAULT 'calendar_view' => CALENDAR_VIEW_DEFAULT
], ],