John Ky wrote:
Hello,
Is it possible to configure mediawiki so that any new users that are created will automatically be assigned to one or more groups?
Actually no. All user accounts are assigned the 'user' group permissions for which you can add / remove rights.
Adding in your localsettings.php: $wgGroupPermissions['user']['delete'] = true;
Would let logged in users delete pages.
In User.php User::loadFromDatabase , near the end of the method, the following line seems to determine the group membership:
$effectiveGroups = array_merge( array( '*', 'user' ), $this->mGroups );
You can probably add groups there ;)
cheers,