From 664d5e6923d7f821523874819267059aa9677619 Mon Sep 17 00:00:00 2001 From: Ben Roberts Date: Tue, 20 Dec 2011 00:33:53 +0000 Subject: [PATCH] Expose backend listUsers via Auth class --- source/lib/SihnonFramework/Auth.class.php | 4 ++++ 1 file changed, 4 insertions(+) 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;