mirror of
https://github.com/BookStackApp/BookStack.git
synced 2025-05-21 07:26:59 +00:00

- Removed LDAP specific logic from login controller, placed in Guard. - Created safer base user provider for ldap login, to be used for SAML soon. - Moved LDAP auth work from user provider to guard.
6 lines
91 B
PHP
6 lines
91 B
PHP
<?php namespace BookStack\Exceptions;
|
|
|
|
class LoginAttemptException extends \Exception
|
|
{
|
|
|
|
}
|