summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/mattermost/platform/model/utils.go
diff options
context:
space:
mode:
authorWim <wim@42.be>2016-07-22 23:14:13 +0200
committerWim <wim@42.be>2016-07-22 23:15:59 +0200
commit911c597377b1f28533d1adee3f3bcff1c776927c (patch)
treea365b345cb2f4c93340306ec6c251c6ee9263406 /vendor/github.com/mattermost/platform/model/utils.go
parent28244ffd9a6bad6228fbe53d73040ec29780b8a7 (diff)
downloadmatterbridge-msglm-911c597377b1f28533d1adee3f3bcff1c776927c.tar.gz
matterbridge-msglm-911c597377b1f28533d1adee3f3bcff1c776927c.tar.bz2
matterbridge-msglm-911c597377b1f28533d1adee3f3bcff1c776927c.zip
Sync with mattermost 3.2.0
Diffstat (limited to 'vendor/github.com/mattermost/platform/model/utils.go')
-rw-r--r--vendor/github.com/mattermost/platform/model/utils.go7
1 files changed, 7 insertions, 0 deletions
diff --git a/vendor/github.com/mattermost/platform/model/utils.go b/vendor/github.com/mattermost/platform/model/utils.go
index 27093c09..27ab3e27 100644
--- a/vendor/github.com/mattermost/platform/model/utils.go
+++ b/vendor/github.com/mattermost/platform/model/utils.go
@@ -20,6 +20,13 @@ import (
"github.com/pborman/uuid"
)
+const (
+ LOWERCASE_LETTERS = "abcdefghijklmnopqrstuvwxyz"
+ UPPERCASE_LETTERS = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
+ NUMBERS = "0123456789"
+ SYMBOLS = " !\"\\#$%&'()*+,-./:;<=>?@[]^_`|~"
+)
+
type StringInterface map[string]interface{}
type StringMap map[string]string
type StringArray []string