fix(prosody): Adds option to enable admins as room owners for prosody 13.0. (#2051)

This commit is contained in:
Дамян Минков
2025-03-19 10:47:37 -05:00
committed by GitHub
parent 39633eb670
commit c44206c603

View File

@@ -72,6 +72,9 @@
-- (see http://prosody.im/doc/creating_accounts for info)
-- Example: admins = { "user1@example.com", "user2@example.net" }
admins = { {{ if .Env.PROSODY_ADMINS }}{{ range $index, $element := $PROSODY_ADMIN_LIST -}}{{ if $index }}, {{ end }}"{{ $element }}"{{ end }}{{ end }} }
component_admins_as_room_owners = true
-- Enable use of libevent for better performance under high load
-- For more information see: http://prosody.im/doc/libevent
--use_libevent = true;