mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_admin_shell: Strip 'prosody:' prefix to allow narrower Role column
This commit is contained in:
parent
d8789a671b
commit
56cfc08952
1 changed files with 4 additions and 3 deletions
|
@ -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;
|
||||
}
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue