summaryrefslogtreecommitdiffstats
path: root/api/user.go
diff options
context:
space:
mode:
authorDerrick Anderson <derrick@andersonwebstudio.com>2018-02-12 16:01:02 -0500
committerDerrick Anderson <derrick@andersonwebstudio.com>2018-02-12 16:01:02 -0500
commitc209e4457457edc042f063390c9a222a694f3a6d (patch)
tree5e1653318a6a14bcad80025793adab0f700deed9 /api/user.go
parent62efb1df754bfe6b10a3c17ca6f89fd33b991f56 (diff)
downloadchat-c209e4457457edc042f063390c9a222a694f3a6d.tar.gz
chat-c209e4457457edc042f063390c9a222a694f3a6d.tar.bz2
chat-c209e4457457edc042f063390c9a222a694f3a6d.zip
revert master changes
Diffstat (limited to 'api/user.go')
-rw-r--r--api/user.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/api/user.go b/api/user.go
index ad4f12ef3..440ea5858 100644
--- a/api/user.go
+++ b/api/user.go
@@ -299,9 +299,9 @@ func getInitialLoad(c *Context, w http.ResponseWriter, r *http.Request) {
il.ClientCfg = c.App.ClientConfig()
if c.App.SessionHasPermissionTo(c.Session, model.PERMISSION_MANAGE_SYSTEM) {
- il.LicenseCfg = c.App.ClientLicense()
+ il.LicenseCfg = utils.ClientLicense()
} else {
- il.LicenseCfg = c.App.GetSanitizedClientLicense()
+ il.LicenseCfg = utils.GetSanitizedClientLicense()
}
w.Write([]byte(il.ToJson()))