mirror of
https://github.com/processone/ejabberd.git
synced 2024-11-24 16:23:40 +01:00
Update mod_muc_room.hrl
This commit is contained in:
parent
7b04a625be
commit
7bd5c7fe59
@ -18,8 +18,6 @@
|
|||||||
%%%
|
%%%
|
||||||
%%%----------------------------------------------------------------------
|
%%%----------------------------------------------------------------------
|
||||||
|
|
||||||
-include("type_compat.hrl").
|
|
||||||
|
|
||||||
-define(MAX_USERS_DEFAULT, 200).
|
-define(MAX_USERS_DEFAULT, 200).
|
||||||
|
|
||||||
-define(SETS, gb_sets).
|
-define(SETS, gb_sets).
|
||||||
@ -64,7 +62,7 @@
|
|||||||
logging = false :: boolean(),
|
logging = false :: boolean(),
|
||||||
vcard = <<"">> :: binary(),
|
vcard = <<"">> :: binary(),
|
||||||
vcard_xupdate = undefined :: undefined | external | binary(),
|
vcard_xupdate = undefined :: undefined | external | binary(),
|
||||||
captcha_whitelist = (?SETS):empty() :: ?TGB_SET,
|
captcha_whitelist = (?SETS):empty() :: gb_sets:set(),
|
||||||
mam = false :: boolean(),
|
mam = false :: boolean(),
|
||||||
pubsub = <<"">> :: binary(),
|
pubsub = <<"">> :: binary(),
|
||||||
lang = ejabberd_config:get_mylang() :: binary()
|
lang = ejabberd_config:get_mylang() :: binary()
|
||||||
@ -107,13 +105,13 @@
|
|||||||
access = {none,none,none,none} :: {atom(), atom(), atom(), atom()},
|
access = {none,none,none,none} :: {atom(), atom(), atom(), atom()},
|
||||||
jid = #jid{} :: jid(),
|
jid = #jid{} :: jid(),
|
||||||
config = #config{} :: config(),
|
config = #config{} :: config(),
|
||||||
users = (?DICT):new() :: ?TDICT,
|
users = (?DICT):new() :: dict:dict(),
|
||||||
subscribers = (?DICT):new() :: ?TDICT,
|
subscribers = (?DICT):new() :: dict:dict(),
|
||||||
subscriber_nicks = (?DICT):new() :: ?TDICT,
|
subscriber_nicks = (?DICT):new() :: dict:dict(),
|
||||||
last_voice_request_time = treap:empty() :: treap:treap(),
|
last_voice_request_time = treap:empty() :: treap:treap(),
|
||||||
robots = (?DICT):new() :: ?TDICT,
|
robots = (?DICT):new() :: dict:dict(),
|
||||||
nicks = (?DICT):new() :: ?TDICT,
|
nicks = (?DICT):new() :: dict:dict(),
|
||||||
affiliations = (?DICT):new() :: ?TDICT,
|
affiliations = (?DICT):new() :: dict:dict(),
|
||||||
history :: lqueue(),
|
history :: lqueue(),
|
||||||
subject = [] :: [text()],
|
subject = [] :: [text()],
|
||||||
subject_author = <<"">> :: binary(),
|
subject_author = <<"">> :: binary(),
|
||||||
|
Loading…
Reference in New Issue
Block a user