fix: [console:TrainingShell] Typo in datasource model.

-- Seriously..
pull/9304/head
Sami Mokaddem 2023-09-28 11:46:49 +02:00
parent e9c9441b54
commit 4de2f03013
No known key found for this signature in database
GPG Key ID: 164C473F627A06FA
1 changed files with 2 additions and 2 deletions

View File

@ -11,7 +11,7 @@ App::uses('File', 'Utility');
class TrainingShell extends AppShell {
public $uses = array('User', 'Organisation', 'Server', 'Authkey');
public $uses = array('User', 'Organisation', 'Server', 'AuthKey');
private $__currentUrl = false;
private $__currentAuthKey = false;
@ -236,7 +236,7 @@ class TrainingShell extends AppShell {
public function WipeAllAuthkeys()
{
$this->Authkey->deleteAll(['AuthKey.id !=' => 0]);
$this->AuthKey->deleteAll(['AuthKey.id !=' => 0]);
}
private function __createOrgFromBlueprint($id)