NOTE: Scheduled for 15th August 2022
We will enable the A/B test that shows the edit icon in the sticky header for idwiki + viwiki treatment groups.
# Acceptance criteria
[] T312573 has been deployed to the target wikis
[] idwiki, viwiki: Control is no sticky header, test1 is sticky header without edit button, test2 is sticky header with edit button
# Sign off steps
[] Make sure there is a task to disable the A/B test for idwiki + viwiki
# Developer notes
```
'wgVectorWebABTestEnrollment' => [
...
'idwiki' => [
'name' => 'vector.sticky_header_edit',
'enabled' => true,
'buckets' => [
'unsampled' => [
'samplingRate' => 0
],
'control' => [
'samplingRate' => 0.5
],
'stickyHeaderEditButtonTreatment' => [
'samplingRate' => 0.5
],
],
],
'viwiki' => [
'name' => 'vector.sticky_header_edit',
'enabled' => true,
'buckets' => [
'unsampled' => [
'samplingRate' => 0
],
'control' => [
'samplingRate' => 0.5
],
'stickyHeaderEditButtonTreatment' => [
'samplingRate' => 0.5
],
],
],
],
$wgVectorStickyHeader = [
"logged_in" => true,
"logged_out" => false,
];
$wgVectorStickyHeaderEdit = [
"logged_in" => true,
"logged_out" => false,
];
```