Renamed modpol/modpol directory to modpol_core for clarity and consistency
This commit is contained in:
29
modpol_core/users/users.lua
Normal file
29
modpol_core/users/users.lua
Normal file
@@ -0,0 +1,29 @@
|
||||
-- ===================================================================
|
||||
-- /users.lua
|
||||
-- User-related functions for Modular Politics
|
||||
-- Called by modpol.lua
|
||||
|
||||
-- ===================================================================
|
||||
-- Function: modpol.list_users
|
||||
-- Params: org
|
||||
-- Outputs: Table of user names
|
||||
--
|
||||
-- This may be overwritten by the platform-specific interface
|
||||
|
||||
modpol.list_users = function(org)
|
||||
local users = {}
|
||||
if (org == nil) then -- no specified org; all players
|
||||
if modpol.instance
|
||||
and modpol.instance.members then
|
||||
-- if instance exists and has membership
|
||||
users = modpol.instance.members
|
||||
else
|
||||
users = {}
|
||||
end
|
||||
else -- if an org is specified
|
||||
if (modpol.orgs[org] ~= nil) then -- org exists
|
||||
users = modpol.orgs[org]["members"]
|
||||
end
|
||||
end
|
||||
return users
|
||||
end
|
Reference in New Issue
Block a user