You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -1673,7 +1696,7 @@ export function slackHelpPayload() {
1673
1696
returnblockResponse({
1674
1697
text: "use /mumbl to save a private thought or create a room.",
1675
1698
blocks: [
1676
-
section("*mumbl in Slack*\n`/mumbl the thing I want to keep` saves a private dump.\n`/mumbl room platform team` creates a Mumbl room from Slack.\n`/mumbl join <room-name> <key>` joins your team's room — reads land in Slack and the room pins in your App Home.\n`/mumbl pin <invite-link>` pins a room to your Slack publish list."),
1699
+
section("*mumbl in Slack*\n`/mumbl the thing I want to keep` saves a private dump.\n`/mumbl draft` turns your recent dumps into an AI field-note draft.\n`/mumbl review` opens your private drafts to edit.\n`/mumbl publish` ships a draft to a room as a team read.\n`/mumbl room platform team` creates a Mumbl room from Slack.\n`/mumbl join <room-name> <key>` joins your team's room — reads land in Slack and the room pins in your App Home.\n`/mumbl pin <invite-link>` pins a room to your Slack publish list."),
1677
1700
context("Private dumps stay private. Team reads only post to Slack if you enable them."),
1678
1701
],
1679
1702
});
@@ -2301,6 +2324,30 @@ function slackFieldNoteReviewModal({ fieldNotes }) {
2301
2324
};
2302
2325
}
2303
2326
2327
+
functionslackPublishPickModal({ fieldNotes }){
2328
+
return{
2329
+
type: "modal",
2330
+
callback_id: "publish_field_note_pick",
2331
+
title: {type: "plain_text",text: "publish a draft"},
2332
+
submit: {type: "plain_text",text: "next"},
2333
+
close: {type: "plain_text",text: "cancel"},
2334
+
blocks: [
2335
+
{
2336
+
type: "input",
2337
+
block_id: "field_note_id",
2338
+
label: {type: "plain_text",text: "draft"},
2339
+
element: {
2340
+
type: "static_select",
2341
+
action_id: "value",
2342
+
placeholder: {type: "plain_text",text: "choose a draft to publish"},
0 commit comments