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',
]);
$password = random_string();
// Admin
$this->CI->admins_model->save([
@ -110,7 +108,7 @@ class Instance {
'phone_number' => '+10000000000',
'settings' => [
'username' => 'administrator',
'password' => $password,
'password' => 'administrator',
'notifications' => TRUE,
'calendar_view' => CALENDAR_VIEW_DEFAULT
],