mod_admin_shell: Strip 'prosody:' prefix to allow narrower Role column

This commit is contained in:
Kim Alvefur 2023-04-02 22:44:29 +02:00
parent d8789a671b
commit 56cfc08952

View file

@ -966,11 +966,12 @@ available_columns = {
};
role = {
title = "Role";
description = "Session role";
width = 20;
description = "Session role with 'prosody:' prefix removed";
width = #"admin";
key = "role";
mapper = function(role)
return role and role.name;
local name = role and role.name;
return name and name:match"^prosody:(%w+)" or name;
end;
}
};