From d6b5b681ae30d8d4a873e84728009218ddc59a20 Mon Sep 17 00:00:00 2001 From: George Goldberg Date: Mon, 25 Sep 2017 13:25:43 +0100 Subject: Finally do away with NewLocAppError function. (#7498) This cleans up the few NewLocAppError calls that crept in since the main bulk of them were removed, and finally removes the NewLocAppError function altogether. --- app/webhook.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'app/webhook.go') diff --git a/app/webhook.go b/app/webhook.go index 04887f203..380839cdc 100644 --- a/app/webhook.go +++ b/app/webhook.go @@ -522,7 +522,7 @@ func (a *App) HandleIncomingWebhook(hookId string, req *model.IncomingWebhookReq if utils.IsLicensed() && *utils.Cfg.TeamSettings.ExperimentalTownSquareIsReadOnly && channel.Name == model.DEFAULT_CHANNEL { - return model.NewLocAppError("HandleIncomingWebhook", "api.post.create_post.town_square_read_only", nil, "") + return model.NewAppError("HandleIncomingWebhook", "api.post.create_post.town_square_read_only", nil, "", http.StatusForbidden) } if channel.Type != model.CHANNEL_OPEN && !a.HasPermissionToChannel(hook.UserId, channel.Id, model.PERMISSION_READ_CHANNEL) { -- cgit v1.2.3-1-g7c22