mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
Merge 0.9->0.10
This commit is contained in:
commit
e4a6b7e39a
2 changed files with 11 additions and 6 deletions
|
@ -119,7 +119,7 @@ local delete_user_layout = dataforms_new{
|
|||
instructions = "Fill out this form to delete a user.";
|
||||
|
||||
{ name = "FORM_TYPE", type = "hidden", value = "http://jabber.org/protocol/admin" };
|
||||
{ name = "accountjids", type = "jid-multi", label = "The Jabber ID(s) to delete" };
|
||||
{ name = "accountjids", type = "jid-multi", required = true, label = "The Jabber ID(s) to delete" };
|
||||
};
|
||||
|
||||
local delete_user_command_handler = adhoc_simple(delete_user_layout, function(fields, err)
|
||||
|
@ -163,7 +163,7 @@ local end_user_session_layout = dataforms_new{
|
|||
instructions = "Fill out this form to end a user's session.";
|
||||
|
||||
{ name = "FORM_TYPE", type = "hidden", value = "http://jabber.org/protocol/admin" };
|
||||
{ name = "accountjids", type = "jid-multi", label = "The Jabber ID(s) for which to end sessions" };
|
||||
{ name = "accountjids", type = "jid-multi", label = "The Jabber ID(s) for which to end sessions", required = true };
|
||||
};
|
||||
|
||||
local end_user_session_handler = adhoc_simple(end_user_session_layout, function(fields, err)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue