mirror of
https://github.com/processone/ejabberd.git
synced 2024-11-24 16:23:40 +01:00
ad16c0f4a4
* src/mod_privacy.erl: Refactoring to extract records in include file. * src/mod_privacy.hrl: Likewise. SVN Revision: 825
17 lines
330 B
Erlang
17 lines
330 B
Erlang
-record(privacy, {us,
|
|
default = none,
|
|
lists = []}).
|
|
|
|
-record(listitem, {type = none,
|
|
value = none,
|
|
action,
|
|
order,
|
|
match_all = false,
|
|
match_iq = false,
|
|
match_message = false,
|
|
match_presence_in = false,
|
|
match_presence_out = false
|
|
}).
|
|
|
|
-record(userlist, {name = none, list = []}).
|