mirror of
https://github.com/processone/ejabberd.git
synced 2024-11-22 16:20:52 +01:00
* src/mod_muc/mod_muc_room.erl: Hide the option 'Make room
moderated' because it isn't implemented, and set the default value of 'moderated' to true because that is the behaviour implemented (EJAB-419) SVN Revision: 999
This commit is contained in:
parent
6697c6153f
commit
4257f0c790
@ -1,3 +1,10 @@
|
||||
2007-11-29 Badlop <badlop@process-one.net>
|
||||
|
||||
* src/mod_muc/mod_muc_room.erl: Hide the option 'Make room
|
||||
moderated' because it isn't implemented, and set the default value
|
||||
of 'moderated' to true because that is the behaviour
|
||||
implemented (EJAB-419)
|
||||
|
||||
2007-11-28 Badlop <badlop@process-one.net>
|
||||
|
||||
* doc/guide.tex: It should be made more clear that domain_certfile
|
||||
|
@ -46,7 +46,7 @@
|
||||
public = true,
|
||||
public_list = true,
|
||||
persistent = false,
|
||||
moderated = false, % TODO
|
||||
moderated = true, % TODO
|
||||
members_by_default = true,
|
||||
members_only = false,
|
||||
allow_user_invites = false,
|
||||
@ -2536,9 +2536,9 @@ get_config(Lang, StateData, From) ->
|
||||
?BOOLXFIELD("Make room members-only",
|
||||
"muc#roomconfig_membersonly",
|
||||
Config#config.members_only),
|
||||
?BOOLXFIELD("Make room moderated",
|
||||
"muc#roomconfig_moderatedroom",
|
||||
Config#config.moderated),
|
||||
%%?BOOLXFIELD("Make room moderated",
|
||||
%% "muc#roomconfig_moderatedroom",
|
||||
%% Config#config.moderated),
|
||||
?BOOLXFIELD("Default users as participants",
|
||||
"members_by_default",
|
||||
Config#config.members_by_default),
|
||||
|
Loading…
Reference in New Issue
Block a user