MM-8604: emit config/license websocket events (#8371)

Этот коммит содержится в:
Jesse Hallam
2018-03-05 07:18:22 -05:00
коммит произвёл Joram Wilander
родитель fa98175a46
Коммит fbff94f3be
5 изменённых файлов: 45 добавлений и 10 удалений

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

@@ -14,6 +14,7 @@ import (
"fmt"
"net/url"
"runtime/debug"
"strconv"
"strings"
l4g "github.com/alecthomas/log4go"
@@ -34,6 +35,7 @@ func (a *App) UpdateConfig(f func(*model.Config)) {
updated := old.Clone()
f(updated)
a.config.Store(updated)
a.InvokeConfigListeners(old, updated)
}
@@ -269,3 +271,16 @@ func (a *App) GetCookieDomain() string {
func (a *App) GetSiteURL() string {
return a.siteURL
}
// ClientConfigWithNoAccounts gets the configuration in a format suitable for sending to the client.
func (a *App) ClientConfigWithNoAccounts() map[string]string {
respCfg := map[string]string{}
for k, v := range a.ClientConfig() {
respCfg[k] = v
}
// NoAccounts is not actually part of the configuration, but is expected by the client.
respCfg["NoAccounts"] = strconv.FormatBool(a.IsFirstUserAccount())
return respCfg
}