diff options
| author | Frederic Guillot <fred@kanboard.net> | 2016-05-18 21:27:36 -0400 |
|---|---|---|
| committer | Frederic Guillot <fred@kanboard.net> | 2016-05-18 21:27:36 -0400 |
| commit | bfd59d9e544028a1ea041806fd60e112f3a90167 (patch) | |
| tree | 0576ae4c6a948cd6af882b23da6073dfef1cae2c /app/ServiceProvider/AuthenticationProvider.php | |
| parent | 0830fe22b777e419e42cfb3349e61098be9e4127 (diff) | |
Reset failed login counter and unlock user when changing password
Diffstat (limited to 'app/ServiceProvider/AuthenticationProvider.php')
| -rw-r--r-- | app/ServiceProvider/AuthenticationProvider.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/ServiceProvider/AuthenticationProvider.php b/app/ServiceProvider/AuthenticationProvider.php index 193929c7..1ac4656c 100644 --- a/app/ServiceProvider/AuthenticationProvider.php +++ b/app/ServiceProvider/AuthenticationProvider.php @@ -143,7 +143,7 @@ class AuthenticationProvider implements ServiceProviderInterface $acl->add('UserCreationController', '*', Role::APP_ADMIN); $acl->add('UserListController', '*', Role::APP_ADMIN); $acl->add('UserStatusController', '*', Role::APP_ADMIN); - $acl->add('UserViewController', array('authentication'), Role::APP_ADMIN); + $acl->add('UserCredentialController', array('changeAuthentication', 'saveAuthentication'), Role::APP_ADMIN); return $acl; } |
