mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-28 07:44:56 +00:00
10 lines
250 B
Lua
10 lines
250 B
Lua
--- Check if a user can create posts
|
|
---@param user { role?: UserRole } User to check
|
|
---@return boolean Whether user can post
|
|
local function can_post(user)
|
|
local role = user.role or "public"
|
|
return role ~= "public"
|
|
end
|
|
|
|
return can_post
|