Reputation: 10477
I need add a new user group for mediawiki. The new group has more permission than "User" group. How can i get it ?
Upvotes: 0
Views: 6194
Reputation: 2323
To add the new group all you have to do is assign it some rights. Use $wgGroupPermissions['group']['right'] = true;
in your LocalSettings.php. See Manual:User Rights for all the options.
Upvotes: 3