Chore: commit unstaged changed
This commit is contained in:
parent
ccb91f3576
commit
f6b054781a
1 changed files with 8 additions and 2 deletions
|
@ -25,12 +25,17 @@ class MlmMatrixBot:
|
|||
self._config['MATRIX_SERVER'], self._matrixUsername, self._config['MATRIX_SPACE_ID'], self._matrixUsername)
|
||||
|
||||
async def init(self):
|
||||
logging.info("==> Initializing <==")
|
||||
|
||||
logging.info(" \t* Connecting to ldap")
|
||||
if not self._ldapHelper.bind():
|
||||
return False
|
||||
|
||||
logging.info(" \t* Connecting to matrix")
|
||||
if not await self._matrixHelper.login(self._config['MATRIX_PASSWORD']):
|
||||
return False
|
||||
|
||||
logging.info("==> Initialized <==")
|
||||
return True
|
||||
|
||||
async def run(self):
|
||||
|
@ -182,7 +187,8 @@ class MlmMatrixBot:
|
|||
if not rc:
|
||||
return
|
||||
|
||||
labs = list(map(lambda lab: lab['sAMAccountName'].replace("p_", "").replace("lab", "-lab"), labs))
|
||||
labs = list(map(lambda lab: lab['sAMAccountName'].replace(
|
||||
"p_", "").replace("lab", "-lab"), labs))
|
||||
await self._create_rooms(labs, joinable_for_space_members=True)
|
||||
|
||||
return labs
|
||||
|
|
Loading…
Reference in a new issue