summaryrefslogtreecommitdiffstats
path: root/app/post.go
diff options
context:
space:
mode:
Diffstat (limited to 'app/post.go')
-rw-r--r--app/post.go8
1 files changed, 7 insertions, 1 deletions
diff --git a/app/post.go b/app/post.go
index 0eed87280..fb0ef3f78 100644
--- a/app/post.go
+++ b/app/post.go
@@ -852,7 +852,7 @@ func makeOpenGraphURLsAbsolute(og *opengraph.OpenGraph, requestURL string) {
}
}
-func (a *App) DoPostAction(postId string, actionId string, userId string) *model.AppError {
+func (a *App) DoPostAction(postId, actionId, userId, selectedOption string) *model.AppError {
pchan := a.Srv.Store.Post().GetSingle(postId)
var post *model.Post
@@ -870,9 +870,15 @@ func (a *App) DoPostAction(postId string, actionId string, userId string) *model
request := &model.PostActionIntegrationRequest{
UserId: userId,
PostId: postId,
+ Type: action.Type,
Context: action.Integration.Context,
}
+ if action.Type == model.POST_ACTION_TYPE_SELECT {
+ request.DataSource = action.DataSource
+ request.Context["selected_option"] = selectedOption
+ }
+
req, _ := http.NewRequest("POST", action.Integration.URL, strings.NewReader(request.ToJson()))
req.Header.Set("Content-Type", "application/json")
req.Header.Set("Accept", "application/json")