summaryrefslogtreecommitdiffstats
path: root/webapp/action_creators
diff options
context:
space:
mode:
authorHarrison Healey <harrisonmhealey@gmail.com>2016-05-06 14:32:08 -0400
committerCorey Hulen <corey@hulen.com>2016-05-06 11:32:08 -0700
commite1cae3b15b1a85fcb2ef30fee0076ae3a8d23856 (patch)
treec84ff25c95f4a80bf081e60b746178c9a12b4090 /webapp/action_creators
parent6c75662b824491a20a757a5eec59556a866374b5 (diff)
downloadchat-e1cae3b15b1a85fcb2ef30fee0076ae3a8d23856.tar.gz
chat-e1cae3b15b1a85fcb2ef30fee0076ae3a8d23856.tar.bz2
chat-e1cae3b15b1a85fcb2ef30fee0076ae3a8d23856.zip
PLT-2600/PLT-2770 Changed getPublicLink api call to return a proper JSON string (#2914)
* Removed unused channelId and userId parameters from web client getPublicLink method * Changed getPublicLink api call to return a proper JSON string
Diffstat (limited to 'webapp/action_creators')
-rw-r--r--webapp/action_creators/global_actions.jsx4
1 files changed, 1 insertions, 3 deletions
diff --git a/webapp/action_creators/global_actions.jsx b/webapp/action_creators/global_actions.jsx
index c1bb4dbc8..6bb0c1732 100644
--- a/webapp/action_creators/global_actions.jsx
+++ b/webapp/action_creators/global_actions.jsx
@@ -281,12 +281,10 @@ export function showGetPostLinkModal(post) {
});
}
-export function showGetPublicLinkModal(channelId, userId, filename) {
+export function showGetPublicLinkModal(filename) {
AppDispatcher.handleViewAction({
type: ActionTypes.TOGGLE_GET_PUBLIC_LINK_MODAL,
value: true,
- channelId,
- userId,
filename
});
}