Page MenuHomePhabricator

Set up default namespaces for different user groups on enwiki
Closed, DeclinedPublic

Description

Since T166854, we have ContentTranslationUserGroupTargetNamespace configuration option to set default namespace per user group level. That config is not currently used anywhere. Not sure if any wiki was configured to use it at some point, but looks unused since introduced, two year ago.

In T217237, enwiki was configured to restrict users outside "extendedconfirmed" group from publishing to main namespace. After that, all restricted users see error from T192144, because main namespace is the default for them. That error has action button that allows them to change to user namespace, and they can switch using publish settings anytime as well.
But, we could reverse this process and make user go through less steps by utilizing target namespace per user group config, so users outside "extendedconfirmed" group have user namespace by default and get error only if they change to main namespace.

Config would look something like:

'wgContentTranslationUserGroupTargetNamespace' => [
    'default' => [],
    'enwiki' => [
        'extendedconfirmed' => 0,
        '*' => 2,
    ],
],

If we don't want to make this change for enwiki or other wikis with similar restrictions (plwiki, kkwiki, nowiki), removing the config option and associated code should be the way to go.

Event Timeline

Communicating the issue and requiring users to make a explicit action encourages them to pause, understand the issue and make a decision. In this way users seem more likely to understand that they are not creating regular content, and get exposed to the namespace concept before proceeding. In addition, we avoid the namespace to be different depending on the language you chose which can also generate confusion (or the need for the user to double-check since the behaviour becomes less predictable).