Some more work for the new group manager

This commit is contained in:
WolverinDEV 2021-03-07 19:17:19 +01:00
parent 26981b95f7
commit eef0144e77
2 changed files with 3 additions and 1 deletions

View File

@ -193,7 +193,8 @@ const std::vector<ErrorType> ts::availableErrors = {
{0x1300, "group_invalid_id" , "Invalid group id" }, {0x1300, "group_invalid_id" , "Invalid group id" },
{0x1301, "group_name_inuse" , "Group name is already in use" }, {0x1301, "group_name_inuse" , "Group name is already in use" },
{0x1302, "group_not_assigned_over_this_server" , "the group hasn't been assigned over this server" }, define_error_description(group_not_assigned_over_this_server, "the group hasn't been assigned over this server"),
define_error_description(group_not_empty, "the target group isn't empty"),
{0xE000, "resource_limit_reached" , "resource limit reached" }, {0xE000, "resource_limit_reached" , "resource limit reached" },

View File

@ -191,6 +191,7 @@ namespace ts {
group_invalid_id = 0x1300, group_invalid_id = 0x1300,
group_name_inuse = 0x1301, group_name_inuse = 0x1301,
group_not_assigned_over_this_server = 0x1302, group_not_assigned_over_this_server = 0x1302,
group_not_empty = 0x1303,
conversation_invalid_id = 0x2200, conversation_invalid_id = 0x2200,
conversation_more_data = 0x2201, conversation_more_data = 0x2201,