Closed
Bug 1082810
Opened 11 years ago
Closed 11 years ago
Allow use of the write API (writeapi) for autoconfirm and/or users
Categories
(Websites :: wiki.mozilla.org, defect)
Websites
wiki.mozilla.org
Tracking
(Not tracked)
RESOLVED
FIXED
2014-Q4
People
(Reporter: ckoehler, Unassigned)
References
Details
(Whiteboard: [kanban:https://kanbanize.com/ctrl_board/4/1673] [dev=2014-10-16][prod=2014-10-16])
We don't have to act on this one, but I want to file to make a record of it.
As discovered in bug 1081976, some AJAX-enabled UI actions require the write api to work as expected.
Currently we restrict writeapi permission to users belonging to 'confirm' group, which means users not belonging to this group do not have the same experience as those who do when using certain features such as the watchlist.
We should consider adding this permission to user or autoconfirmed groups.
Reporter | ||
Comment 1•11 years ago
|
||
In LocalSettings.php, please make these changes:
CURRENT
$wgGroupPermissions['user']['writeapi'] = false;
NEW
$wgGroupPermissions['user']['writeapi'] = true;
CURRENT
$wgGroupPermissions['autoconfirmed']['writeapi'] = false;
NEW
$wgGroupPermissions['autoconfirmed']['writeapi'] = true;
Reporter | ||
Updated•11 years ago
|
Whiteboard: [dev=2014-10-16][prod=2014-10-16]
Whiteboard: [dev=2014-10-16][prod=2014-10-16] → [kanban:https://kanbanize.com/ctrl_board/4/1673] [dev=2014-10-16][prod=2014-10-16]
Comment 2•11 years ago
|
||
Changes pushed and tested to dev, stage, and prod.
Updated•11 years ago
|
Status: NEW → RESOLVED
Closed: 11 years ago
Resolution: --- → FIXED
You need to log in
before you can comment on or make changes to this bug.
Description
•