summaryrefslogtreecommitdiffstats
path: root/web
diff options
context:
space:
mode:
authorJoram Wilander <jwawilander@gmail.com>2018-02-23 10:55:02 -0500
committerChristopher Speller <crspeller@gmail.com>2018-02-23 07:55:02 -0800
commit5fb4b1bc935bd273990779e1d4a680a563784df8 (patch)
treeae97cdb415a0bede511f0cc10d31573446ee77da /web
parent4211a2bb3ccda5698fc3c284d9f5c468eb575d12 (diff)
downloadchat-5fb4b1bc935bd273990779e1d4a680a563784df8.tar.gz
chat-5fb4b1bc935bd273990779e1d4a680a563784df8.tar.bz2
chat-5fb4b1bc935bd273990779e1d4a680a563784df8.zip
MM-8593 Default APIv3 to disabled for new installs (#8353)
* Default APIv3 to disabled for new installs * Add EnableAPIv3 setting to client config * Enable APIv3 for needed tests
Diffstat (limited to 'web')
-rw-r--r--web/web_test.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/web/web_test.go b/web/web_test.go
index 5bc69b697..373d47103 100644
--- a/web/web_test.go
+++ b/web/web_test.go
@@ -59,6 +59,7 @@ func Setup() *app.App {
a.UpdateConfig(func(cfg *model.Config) {
*cfg.TeamSettings.EnableOpenServer = true
+ *cfg.ServiceSettings.EnableAPIv3 = true
})
return a