Hello,
I am having some issues trying to use the LDAP plugin for authentication.
I enabled LDAP in the settings, and provided configurations for my LDAP environment. In this case I am using AD.
I am getting the following error when I click the 'LDAP Login" button that now appears on the login page:
```
ERROR:root:Traceback (most recent call last):
File "C:\Users\dave\env1\temp\py4web\py4web\core.py", line 930, in wrapper
ret = func(*func_args, **func_kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\Users\dave\env1\temp\py4web\py4web\core.py", line 915, in wrapper
raise context["exception"]
File "C:\Users\dave\env1\temp\py4web\py4web\core.py", line 894, in wrapper
context["output"] = func(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^
File "C:\Users\dave\env1\temp\py4web\py4web\utils\auth.py", line 972, in _
return plugin.handle_request(self, path, request.query, request.json)
^^^^^^^^^^^^^^^^^^^^^
AttributeError: 'LDAPPlugin' object has no attribute 'handle_request'
127.0.0.1 - "GET /myapp/auth/plugin/ldap/login HTTP/1.1" - 500 541
INFO:Rocket.Requests:127.0.0.1 - "GET /myapp/auth/plugin/ldap/login HTTP/1.1" - 500 541
```
Looking at util/auth_plugins/ldap_plugin.py I see there is no handle_request method.
Any help is appreciated.
Thank you.