From 033f6d7f97cefb5c7dd1aa3f1687172f90a50493 Mon Sep 17 00:00:00 2001 From: iglocska Date: Thu, 25 Nov 2021 00:02:16 +0100 Subject: [PATCH] fix: [typo] organisations != oganisations --- src/Model/Table/UsersTable.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Model/Table/UsersTable.php b/src/Model/Table/UsersTable.php index 2eebd8c..61f06b8 100644 --- a/src/Model/Table/UsersTable.php +++ b/src/Model/Table/UsersTable.php @@ -137,7 +137,7 @@ class UsersTable extends AppTable 'username' => 'admin', 'password' => 'Password1234', 'individual_id' => $individual->id, - 'oganisation_id' => $organisation->id, + 'organisation_id' => $organisation->id, 'role_id' => $role->id ]); $this->save($user);