summaryrefslogtreecommitdiffstats
path: root/model
diff options
context:
space:
mode:
Diffstat (limited to 'model')
-rw-r--r--model/manifest.go5
-rw-r--r--model/plugin_key_value.go4
2 files changed, 4 insertions, 5 deletions
diff --git a/model/manifest.go b/model/manifest.go
index 7d28f6dc7..121d3e0d2 100644
--- a/model/manifest.go
+++ b/model/manifest.go
@@ -102,9 +102,8 @@ 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. Ids are limited
- // to 200 characters. 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. 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.
diff --git a/model/plugin_key_value.go b/model/plugin_key_value.go
index 093422c82..ceb216c2a 100644
--- a/model/plugin_key_value.go
+++ b/model/plugin_key_value.go
@@ -9,8 +9,8 @@ import (
)
const (
- KEY_VALUE_PLUGIN_ID_MAX_RUNES = 200
- KEY_VALUE_KEY_MAX_RUNES = 50
+ KEY_VALUE_PLUGIN_ID_MAX_RUNES = 100
+ KEY_VALUE_KEY_MAX_RUNES = 100
)
type PluginKeyValue struct {