summaryrefslogtreecommitdiffstats
path: root/model
diff options
context:
space:
mode:
authorHanzei <Hanzei@users.noreply.github.com>2018-08-18 14:35:32 +0200
committerJoram Wilander <jwawilander@gmail.com>2018-08-18 08:35:32 -0400
commitc2f2fda8a19b22453c99d832cca6eaad48a1b964 (patch)
tree1b1846634280afb8107a8122e1a00767df732d5a /model
parent97d8470a36db54e4a19b659c3f725743a93a9354 (diff)
downloadchat-c2f2fda8a19b22453c99d832cca6eaad48a1b964.tar.gz
chat-c2f2fda8a19b22453c99d832cca6eaad48a1b964.tar.bz2
chat-c2f2fda8a19b22453c99d832cca6eaad48a1b964.zip
Add PostId to PostActionIntegrationRequest (#9270)
Diffstat (limited to 'model')
-rw-r--r--model/post.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/model/post.go b/model/post.go
index 1dd0a4db6..bec31aea7 100644
--- a/model/post.go
+++ b/model/post.go
@@ -121,6 +121,7 @@ type PostActionIntegration struct {
type PostActionIntegrationRequest struct {
UserId string `json:"user_id"`
+ PostId string `json:"post_id"`
Context StringInterface `json:"context,omitempty"`
}