Add LDAP authentication

This commit is contained in:
Frédéric Guillot
2014-04-20 19:24:40 -04:00
parent 1b05f20d58
commit dea5f99363
13 changed files with 180 additions and 37 deletions

View File

@@ -65,14 +65,6 @@ class User extends Base
list($valid, $errors) = $this->user->validateLogin($values);
if ($valid) {
$this->lastLogin->create(
\Model\LastLogin::AUTH_DATABASE,
$this->acl->getUserId(),
$this->user->getIpAddress(),
$this->user->getUserAgent()
);
$this->response->redirect('?controller=app');
}