Start of a debug screen

This commit is contained in:
Deon George
2023-01-27 19:59:31 +11:00
parent 58e171aea1
commit e0185345c8
8 changed files with 104 additions and 16 deletions

View File

@@ -17,4 +17,11 @@ class User extends Model
public static $objectClasses = [
'posixAccount',
];
}
/* METHODS */
public function getDn(): string
{
return $this->exists ? parent::getDn() : 'Anonymous';
}
}