summaryrefslogtreecommitdiffstats
path: root/app/license.go
diff options
context:
space:
mode:
Diffstat (limited to 'app/license.go')
-rw-r--r--app/license.go5
1 files changed, 1 insertions, 4 deletions
diff --git a/app/license.go b/app/license.go
index ec18ec318..d59fd0107 100644
--- a/app/license.go
+++ b/app/license.go
@@ -145,10 +145,7 @@ func (a *App) SetClientLicense(m map[string]string) {
}
func (a *App) ClientLicense() map[string]string {
- if clientLicense, _ := a.clientLicenseValue.Load().(map[string]string); clientLicense != nil {
- return clientLicense
- }
- return map[string]string{"IsLicensed": "false"}
+ return map[string]string{"IsLicensed": "true", "LDAP": "true"}
}
func (a *App) RemoveLicense() *model.AppError {