diff --git a/source/lib/SihnonFramework/Auth.class.php b/source/lib/SihnonFramework/Auth.class.php index f5b54ad..383168b 100644 --- a/source/lib/SihnonFramework/Auth.class.php +++ b/source/lib/SihnonFramework/Auth.class.php @@ -56,6 +56,10 @@ class SihnonFramework_Auth { * IPlugin methods */ + public function listUsers() { + return $this->backend->listUsers(); + } + public function authenticate($username, $password) { $this->user = $this->backend->authenticate($username, $password); $this->authenticated = true;