summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/mattermost/platform/model/outgoing_webhook.go
diff options
context:
space:
mode:
authorWim <wim@42.be>2016-04-16 20:39:43 +0200
committerWim <wim@42.be>2016-04-16 20:39:43 +0200
commit51265d546409de12483531773fc1fbc73453ae6e (patch)
tree924b5be51b320a6fe05784f2495a2bfcfc7a3242 /vendor/github.com/mattermost/platform/model/outgoing_webhook.go
parentde4c7804101a47a01d0c9b88ea34d2b153e2b6b9 (diff)
downloadmatterbridge-msglm-51265d546409de12483531773fc1fbc73453ae6e.tar.gz
matterbridge-msglm-51265d546409de12483531773fc1fbc73453ae6e.tar.bz2
matterbridge-msglm-51265d546409de12483531773fc1fbc73453ae6e.zip
Sync with mattermost 2.2.0 release
Diffstat (limited to 'vendor/github.com/mattermost/platform/model/outgoing_webhook.go')
-rw-r--r--vendor/github.com/mattermost/platform/model/outgoing_webhook.go10
1 files changed, 0 insertions, 10 deletions
diff --git a/vendor/github.com/mattermost/platform/model/outgoing_webhook.go b/vendor/github.com/mattermost/platform/model/outgoing_webhook.go
index e13de908..70de4d26 100644
--- a/vendor/github.com/mattermost/platform/model/outgoing_webhook.go
+++ b/vendor/github.com/mattermost/platform/model/outgoing_webhook.go
@@ -20,8 +20,6 @@ type OutgoingWebhook struct {
TeamId string `json:"team_id"`
TriggerWords StringArray `json:"trigger_words"`
CallbackURLs StringArray `json:"callback_urls"`
- DisplayName string `json:"display_name"`
- Description string `json:"description"`
}
func (o *OutgoingWebhook) ToJson() string {
@@ -108,14 +106,6 @@ func (o *OutgoingWebhook) IsValid() *AppError {
}
}
- if len(o.DisplayName) > 64 {
- return NewLocAppError("OutgoingWebhook.IsValid", "model.outgoing_hook.is_valid.display_name.app_error", nil, "")
- }
-
- if len(o.Description) > 128 {
- return NewLocAppError("OutgoingWebhook.IsValid", "model.outgoing_hook.is_valid.description.app_error", nil, "")
- }
-
return nil
}