summaryrefslogtreecommitdiffstats
path: root/api4/system.go
diff options
context:
space:
mode:
authorJoram Wilander <jwawilander@gmail.com>2017-04-27 10:57:58 -0400
committerCorey Hulen <corey@hulen.com>2017-04-27 07:57:58 -0700
commit5a60ea0d756531fef4e6e94be1377c10a7022260 (patch)
tree894421b688ec276dbae0f0e530eca100d4da4541 /api4/system.go
parent9a87bb3af68216b53ee8f89d6604c715c7b85b2d (diff)
downloadchat-5a60ea0d756531fef4e6e94be1377c10a7022260.tar.gz
chat-5a60ea0d756531fef4e6e94be1377c10a7022260.tar.bz2
chat-5a60ea0d756531fef4e6e94be1377c10a7022260.zip
PLT-6268 Clear blue bar correctly when removing expiring license (#6247)
* Don't sanitize license for system admin * Clear blue bar error whe removing expiring license * Fix unit test
Diffstat (limited to 'api4/system.go')
-rw-r--r--api4/system.go10
1 files changed, 9 insertions, 1 deletions
diff --git a/api4/system.go b/api4/system.go
index 7e860ba76..1f4589bf5 100644
--- a/api4/system.go
+++ b/api4/system.go
@@ -231,6 +231,14 @@ func getClientLicense(c *Context, w http.ResponseWriter, r *http.Request) {
return
}
+ var clientLicense map[string]string
+
+ if app.SessionHasPermissionTo(c.Session, model.PERMISSION_MANAGE_SYSTEM) {
+ clientLicense = utils.ClientLicense
+ } else {
+ clientLicense = utils.GetSanitizedClientLicense()
+ }
+
w.Header().Set(model.HEADER_ETAG_SERVER, etag)
- w.Write([]byte(model.MapToJson(utils.GetSanitizedClientLicense())))
+ w.Write([]byte(model.MapToJson(clientLicense)))
}