summaryrefslogtreecommitdiffstats
path: root/app/plugin.go
diff options
context:
space:
mode:
authorJason Blais <jason@spinpunch.com>2018-03-21 09:11:51 -0400
committerJoram Wilander <jwawilander@gmail.com>2018-03-21 09:11:51 -0400
commitb118451f3de4d678e35d3d6c7f188439d3e0add0 (patch)
tree00216c1c2cd33875070007068f40f7b379f03a22 /app/plugin.go
parent7e444dfd88d117df5b5a6ea589c233f71331e2ff (diff)
downloadchat-b118451f3de4d678e35d3d6c7f188439d3e0add0.tar.gz
chat-b118451f3de4d678e35d3d6c7f188439d3e0add0.tar.bz2
chat-b118451f3de4d678e35d3d6c7f188439d3e0add0.zip
Update plugin.go (#8486)
Diffstat (limited to 'app/plugin.go')
-rw-r--r--app/plugin.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/plugin.go b/app/plugin.go
index 6702e9227..903f4b767 100644
--- a/app/plugin.go
+++ b/app/plugin.go
@@ -401,7 +401,7 @@ func (a *App) InitPlugins(pluginPath, webappPath string, supervisorOverride plug
options = append(options, pluginenv.SupervisorProvider(supervisorOverride))
} else if err := sandbox.CheckSupport(); err != nil {
l4g.Warn(err.Error())
- l4g.Warn("plugin sandboxing is not supported. plugins will run with the same access level as the server")
+ l4g.Warn("plugin sandboxing is not supported. plugins will run with the same access level as the server. See documentation to learn more: https://developers.mattermost.com/extend/plugins/security/")
options = append(options, pluginenv.SupervisorProvider(rpcplugin.SupervisorProvider))
} else {
options = append(options, pluginenv.SupervisorProvider(sandbox.SupervisorProvider))