a tool for shared writing and social publishing
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

remove mailbox and rsvp blocks

-27
-27
components/Blocks/BlockCommands.tsx
··· 204 204 }, 205 205 }, 206 206 { 207 - name: "Mailbox", 208 - icon: <BlockMailboxSmall />, 209 - type: "block", 210 - hiddenInPublication: true, 211 - onSelect: async (rep, props, um) => { 212 - props.entityID && clearCommandSearchText(props.entityID); 213 - await createBlockWithType(rep, props, "mailbox"); 214 - um.add({ 215 - undo: () => { 216 - props.entityID && focusTextBlock(props.entityID); 217 - }, 218 - redo: () => {}, 219 - }); 220 - }, 221 - }, 222 - { 223 207 name: "Poll", 224 208 icon: <BlockPollSmall />, 225 209 type: "block", ··· 285 269 }, 286 270 287 271 // EVENT STUFF 288 - 289 - { 290 - name: "RSVP", 291 - icon: <BlockRSVPSmall />, 292 - type: "event", 293 - hiddenInPublication: true, 294 - onSelect: (rep, props) => { 295 - props.entityID && clearCommandSearchText(props.entityID); 296 - return createBlockWithType(rep, props, "rsvp"); 297 - }, 298 - }, 299 272 { 300 273 name: "Date and Time", 301 274 icon: <BlockCalendarSmall />,