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 01:22, 5 April 2025 (Added module implementation). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

-- This module implements the template {{UsersInGroup}}
local p = {}

function p.main( frame )
           usersInGroup = mw.site.stats.usersInGroup(frame.args.group)
           Group = frame.args.group
          return "UsersInGroup: " .. Group .. " = ["  .. usersInGroup .. "]"
end
return p