Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions packages/pieces/community/slack/src/i18n/translation.json
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@
"Message": "Message",
"Username": "Username",
"Profile Picture": "Profile Picture",
"Icon Emoji": "Icon Emoji",
"Mention flow of origin?": "Mention flow of origin?",
"Block Kit blocks": "Block Kit blocks",
"Unfurl Links": "Unfurl Links",
Expand Down Expand Up @@ -106,6 +107,7 @@
"e.g.`thumbsup`": "e.g.`thumbsup`",
"The username of the bot": "The username of the bot",
"The profile picture of the bot": "The profile picture of the bot",
"The icon emoji of the bot": "The icon emoji of the bot",
"If checked, adds a mention at the end of the Slack message to indicate which flow sent the notification, with a link to said flow.": "If checked, adds a mention at the end of the Slack message to indicate which flow sent the notification, with a link to said flow.",
"See https://api.slack.com/block-kit for specs": "See https://api.slack.com/block-kit for specs",
"Enable link unfurling for this message": "Enable link unfurling for this message",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,6 @@ export const triggerEventsApi = {
);
},
saveTriggerMockdata(request: SaveTriggerEventRequest) {
return api.post<TriggerEventWithPayload>(`/v1/trigger-events`, {
flowId: request.flowId,
mockData: request.mockData,
});
return api.post<TriggerEventWithPayload>(`/v1/trigger-events`, request);
},
};
Loading