Jump to content

Module:UsersInGroup

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Raph Williams65 (talk | contribs) at 00:49, 5 April 2025 (Fixed). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

local p = {}

function p.main( frame )
           usersInGroup = mw.site.stats.usersInGroup(frame.args.group)
           Group = frame.args.group or error("Group not specified")
          return "Group:" .. Group ..  "("  .. usersInGroup .. ")"
end
return p