mirror of
https://git.lapiole.org/dani/ansible-roles.git
synced 2025-04-12 00:03:17 +02:00
7 lines
209 B
Lua
7 lines
209 B
Lua
-- This module makes all MUCs in Prosody unavailable on disco#items query
|
|
-- Copyright (C) 2023-present 8x8, Inc.
|
|
|
|
module:hook("muc-room-pre-create", function(event)
|
|
event.room:set_hidden(true);
|
|
end, -1);
|