Files

15 lines
296 B
Lua
Raw Permalink Normal View History

dofile('../modpol.lua');
modpol.orgs.reset()
test_org = modpol.instance:add_org('test_org', 'luke')
test_org:add_member('nathan')
print(table.concat(test_org:list_members(), ", "))
-- modpol.modules.join_org.initiate("paul", test_org)
2021-11-22 16:49:03 -05:00
test_org:call_module(
"join_org_class",
"paul"
)