summaryrefslogtreecommitdiffstats
path: root/app/webhook.go
diff options
context:
space:
mode:
authorPoornima <mpoornima@users.noreply.github.com>2017-02-27 00:18:20 +0530
committerJoram Wilander <jwawilander@gmail.com>2017-02-26 13:48:20 -0500
commit19b753467d37209f2227567637e60138d05dd405 (patch)
tree163ba0878c02267ecbbcb288e11d23e30ec9c8eb /app/webhook.go
parentc0bb6f99f89259f6728856ace23d5dd505494b26 (diff)
downloadchat-19b753467d37209f2227567637e60138d05dd405.tar.gz
chat-19b753467d37209f2227567637e60138d05dd405.tar.bz2
chat-19b753467d37209f2227567637e60138d05dd405.zip
Adding edit of incoming webhook (#5272)
Adding edit of outgoing webhook Fixing spelling of error Fixing style Changing from PUT to POST for updates Fixing test failures due to merge
Diffstat (limited to 'app/webhook.go')
-rw-r--r--app/webhook.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/webhook.go b/app/webhook.go
index ff7f2726e..c9485c807 100644
--- a/app/webhook.go
+++ b/app/webhook.go
@@ -195,7 +195,7 @@ func CreateWebhookPost(userId, teamId, channelId, text, overrideUsername, overri
func CreateIncomingWebhookForChannel(userId string, channel *model.Channel, hook *model.IncomingWebhook) (*model.IncomingWebhook, *model.AppError) {
if !utils.Cfg.ServiceSettings.EnableIncomingWebhooks {
- return nil, model.NewAppError("CreateIncomingWebhookForChannel", "api.webhook.create_incoming.disabled.app_errror", nil, "", http.StatusNotImplemented)
+ return nil, model.NewAppError("CreateIncomingWebhookForChannel", "api.webhook.create_incoming.disabled.app_error", nil, "", http.StatusNotImplemented)
}
hook.UserId = userId