mirror of
https://github.com/spantaleev/matrix-docker-ansible-deploy.git
synced 2024-11-10 12:47:39 +01:00
Merge pull request #2285 from etkecc/fix-user-creator
fix user creator role
This commit is contained in:
commit
4c711dcc7d
@ -2761,29 +2761,29 @@ matrix_conduit_systemd_required_services_list: |
|
|||||||
|
|
||||||
matrix_user_creator_users_auto: |
|
matrix_user_creator_users_auto: |
|
||||||
{{
|
{{
|
||||||
[{
|
([{
|
||||||
'username': matrix_bot_matrix_reminder_bot_matrix_user_id_localpart,
|
'username': matrix_bot_matrix_reminder_bot_matrix_user_id_localpart,
|
||||||
'initial_password': matrix_bot_matrix_reminder_bot_matrix_user_password,
|
'initial_password': matrix_bot_matrix_reminder_bot_matrix_user_password,
|
||||||
'initial_type': 'bot',
|
'initial_type': 'bot',
|
||||||
}] if matrix_bot_matrix_reminder_bot_enabled else []
|
}] if matrix_bot_matrix_reminder_bot_enabled else [])
|
||||||
+
|
+
|
||||||
[{
|
([{
|
||||||
'username': matrix_bot_honoroit_login,
|
'username': matrix_bot_honoroit_login,
|
||||||
'initial_password': matrix_bot_honoroit_password,
|
'initial_password': matrix_bot_honoroit_password,
|
||||||
'initial_type': 'bot',
|
'initial_type': 'bot',
|
||||||
}] if matrix_bot_honoroit_enabled else []
|
}] if matrix_bot_honoroit_enabled else [])
|
||||||
+
|
+
|
||||||
[{
|
([{
|
||||||
'username': matrix_bot_postmoogle_login,
|
'username': matrix_bot_postmoogle_login,
|
||||||
'initial_password': matrix_bot_postmoogle_password,
|
'initial_password': matrix_bot_postmoogle_password,
|
||||||
'initial_type': 'bot',
|
'initial_type': 'bot',
|
||||||
}] if matrix_bot_postmoogle_enabled else []
|
}] if matrix_bot_postmoogle_enabled else [])
|
||||||
+
|
+
|
||||||
[{
|
([{
|
||||||
'username': matrix_bot_buscarron_login,
|
'username': matrix_bot_buscarron_login,
|
||||||
'initial_password': matrix_bot_buscarron_password,
|
'initial_password': matrix_bot_buscarron_password,
|
||||||
'initial_type': 'bot',
|
'initial_type': 'bot',
|
||||||
}] if matrix_bot_buscarron_enabled else []
|
}] if matrix_bot_buscarron_enabled else [])
|
||||||
}}
|
}}
|
||||||
|
|
||||||
######################################################################
|
######################################################################
|
||||||
|
Loading…
Reference in New Issue
Block a user