phi/src/phi/api/rest.py

13 lines
288 B
Python
Raw Normal View History

from aiohttp.web import json_response
2017-12-16 23:03:03 +01:00
def status(request):
response = {
'ldap': {
'connected': not request.app['ldap_client'].connection.closed,
'bound': request.app['ldap_client'].connection.bound
}
}
return json_response(response)