mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-05-01 17:24:57 +00:00
13 lines
344 B
Lua
13 lines
344 B
Lua
-- User table columns
|
|
local function user_columns()
|
|
return {
|
|
{ id = "avatar", type = "image", width = "50px" },
|
|
{ id = "name", type = "text", sortable = true },
|
|
{ id = "email", type = "text", sortable = true },
|
|
{ id = "role", type = "badge" },
|
|
{ id = "actions", type = "actions" }
|
|
}
|
|
end
|
|
|
|
return user_columns
|