summaryrefslogtreecommitdiffstats
path: root/api4/post.go
diff options
context:
space:
mode:
authorGeorge Goldberg <george@gberg.me>2018-09-14 16:21:05 +0100
committerChristopher Speller <crspeller@gmail.com>2018-09-14 08:21:05 -0700
commitfdbb6de3d52a5f41f075812e3b87616685a21b9b (patch)
tree1e434c28bf56b82148124f15958f36423e02828c /api4/post.go
parent83a00ae9251475b3ef39284ba922cb3ca55a6fbe (diff)
downloadchat-fdbb6de3d52a5f41f075812e3b87616685a21b9b.tar.gz
chat-fdbb6de3d52a5f41f075812e3b87616685a21b9b.tar.bz2
chat-fdbb6de3d52a5f41f075812e3b87616685a21b9b.zip
MM-11520: Make entity ID checks consistent across api4. (#9395)
* MM-11520: Make entity ID checks consistent across api4. * Update tests.
Diffstat (limited to 'api4/post.go')
-rw-r--r--api4/post.go6
1 files changed, 6 insertions, 0 deletions
diff --git a/api4/post.go b/api4/post.go
index 014174b37..46c688014 100644
--- a/api4/post.go
+++ b/api4/post.go
@@ -382,6 +382,12 @@ func updatePost(c *Context, w http.ResponseWriter, r *http.Request) {
return
}
+ // The post being updated in the payload must be the same one as indicated in the URL.
+ if post.Id != c.Params.PostId {
+ c.SetInvalidParam("post_id")
+ return
+ }
+
if !c.App.SessionHasPermissionToChannelByPost(c.Session, c.Params.PostId, model.PERMISSION_EDIT_POST) {
c.SetPermissionError(model.PERMISSION_EDIT_POST)
return