diff options
author | Evgeniy Khramtsov <ekhramtsov@process-one.net> | 2016-06-26 09:08:37 +0300 |
---|---|---|
committer | Evgeniy Khramtsov <ekhramtsov@process-one.net> | 2016-07-08 15:05:50 +0300 |
commit | 32de9a56a5d6113e0db94cf0a38c17d26522bf7e (patch) | |
tree | 536bfd0fa07ce8fc4da8f4a7426a80d4997aa94b /include/mod_muc_room.hrl | |
parent | Update dependencies (diff) |
Experimental MUC/Sub support
Diffstat (limited to 'include/mod_muc_room.hrl')
-rw-r--r-- | include/mod_muc_room.hrl | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/mod_muc_room.hrl b/include/mod_muc_room.hrl index 4d82856ca..d985f3f3b 100644 --- a/include/mod_muc_room.hrl +++ b/include/mod_muc_room.hrl @@ -53,6 +53,7 @@ members_by_default = true :: boolean(), members_only = false :: boolean(), allow_user_invites = false :: boolean(), + allow_subscription = false :: boolean(), password_protected = false :: boolean(), password = <<"">> :: binary(), anonymous = true :: boolean(), @@ -76,6 +77,8 @@ jid :: jid(), nick :: binary(), role :: role(), + is_subscriber = false :: boolean(), + subscriptions = [] :: [binary()], last_presence :: xmlel() }). |