X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/7766e753fefb962209f1898a234053f8c7bbe59d..d3b6a58593b94c9ff41c30a7517086d607f28f10:/projects/sgconf/users.cpp diff --git a/projects/sgconf/users.cpp b/projects/sgconf/users.cpp index 25159924..3e366066 100644 --- a/projects/sgconf/users.cpp +++ b/projects/sgconf/users.cpp @@ -184,10 +184,10 @@ void SGCONF::AppendUsersOptionBlock(COMMANDS & commands, OPTION_BLOCKS & blocks) { blocks.Add("User management options") .Add("get-users", SGCONF::MakeAPIAction(commands, GetUsersFunction), "\tget user list") - .Add("get-user", SGCONF::MakeAPIAction(commands, "", true, GetUserFunction), "get user") - .Add("add-user", SGCONF::MakeAPIAction(commands, "", true, AddUserFunction), "add user") - .Add("del-user", SGCONF::MakeAPIAction(commands, "", true, DelUserFunction), "del user") - .Add("chg-user", SGCONF::MakeAPIAction(commands, "", true, ChgUserFunction), "change user") - .Add("check-user", SGCONF::MakeAPIAction(commands, "", true, CheckUserFunction), "check user existance and credentials") - .Add("send-message", SGCONF::MakeAPIAction(commands, "", true, SendMessageFunction), "send message"); + .Add("get-user", SGCONF::MakeAPIAction(commands, "", GetUserFunction), "get user") + .Add("add-user", SGCONF::MakeAPIAction(commands, "", AddUserFunction), "add user") + .Add("del-user", SGCONF::MakeAPIAction(commands, "", DelUserFunction), "del user") + .Add("chg-user", SGCONF::MakeAPIAction(commands, "", ChgUserFunction), "change user") + .Add("check-user", SGCONF::MakeAPIAction(commands, "", CheckUserFunction), "check user existance and credentials") + .Add("send-message", SGCONF::MakeAPIAction(commands, "", SendMessageFunction), "send message"); }