[MM-48014] Auto-enable Apps Bar by moving EnableAppBar setting to DisableAppBar (#23010)

* auto-enable Apps Bar by moving EnableAppBar setting to DisableAppBar

* update playwright config

* remove EnableAppBar config setting to avoid confusion

* small fixes

---------

Co-authored-by: Mattermost Build <build@mattermost.com>
Co-authored-by: Harrison Healey <harrisonmhealey@gmail.com>
Этот коммит содержится в:
Michael Kochell
2023-06-15 12:33:06 -04:00
коммит произвёл GitHub
родитель 747b4cf26c
Коммит d403c034d4
12 изменённых файлов: 199 добавлений и 23 удалений

Просмотреть файл

@@ -326,6 +326,19 @@ func TestGetClientConfig(t *testing.T) {
"ExperimentalSharedChannels": "true",
},
},
{
"Disable App Bar",
&model.Config{
ExperimentalSettings: model.ExperimentalSettings{
DisableAppBar: model.NewBool(true),
},
},
"",
nil,
map[string]string{
"DisableAppBar": "true",
},
},
}
for _, testCase := range testCases {