From 4de2e5206e23ee268b38f071ecd8fcbea0bbc80a Mon Sep 17 00:00:00 2001 From: Joram Wilander Date: Fri, 24 Aug 2018 06:16:17 -0400 Subject: Support for interactive menus in message attachments (#9285) --- app/post.go | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'app/post.go') 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") -- cgit v1.2.3-1-g7c22