Contents:
from .base import Base [docs]class LDAP(Base): endpoint = '/ldap' [docs] def sync_ldap(self): return self.client.post( self.endpoint + '/sync' ) [docs] def test_ldap_config(self): return self.client.post( self.endpoint + '/test' )