summaryrefslogtreecommitdiffstats
path: root/model/manifest.go
diff options
context:
space:
mode:
authorJoram Wilander <jwawilander@gmail.com>2017-12-05 18:19:33 -0500
committerChristopher Speller <crspeller@gmail.com>2017-12-05 15:19:33 -0800
commit7cefef6d21fa76de0683d2fe9ff56a6e28816628 (patch)
tree3aff5d34a44bb65cfefa5e69084d2bd484d1dd51 /model/manifest.go
parent150de584c348d6317199fd619f0c144464b8f755 (diff)
downloadchat-7cefef6d21fa76de0683d2fe9ff56a6e28816628.tar.gz
chat-7cefef6d21fa76de0683d2fe9ff56a6e28816628.tar.bz2
chat-7cefef6d21fa76de0683d2fe9ff56a6e28816628.zip
Hash key for plugin store and limit id length (#7933)
Diffstat (limited to 'model/manifest.go')
-rw-r--r--model/manifest.go5
1 files changed, 3 insertions, 2 deletions
diff --git a/model/manifest.go b/model/manifest.go
index 121d3e0d2..03d78f84e 100644
--- a/model/manifest.go
+++ b/model/manifest.go
@@ -102,8 +102,9 @@ type PluginSettingsSchema struct {
// help_text: When true, an extra thing will be enabled!
// default: false
type Manifest struct {
- // The id is a globally unique identifier that represents your plugin. Reverse-DNS notation
- // using a name you control is a good option. For example, "com.mycompany.myplugin".
+ // The id is a globally unique identifier that represents your plugin. Ids are limited
+ // to 190 characters. Reverse-DNS notation using a name you control is a good option.
+ // For example, "com.mycompany.myplugin".
Id string `json:"id" yaml:"id"`
// The name to be displayed for the plugin.