Files
pearcord-platform/platform-threads-imports.js
T
Raven ScottandCursor 60a103a653 refactor(platform): Phase 734 secondary scopes and index exports finalize
Add foldersScope, enrichmentScope, threadsScope, botAuthScope, and
automationScope namespaces in index.js; consolidate automation-export,
bot-auth, and threads import modules; finalize exports via
platform-index-exports.js. No behavior or mesh semantics changes.

Co-authored-by: Cursor <[email protected]>
2026-06-03 10:24:52 -04:00

17 lines
594 B
JavaScript

'use strict'
/** pearcord-threads bindings for PearcordPlatform index (Phase 734). */
const threads = require('pearcord-threads')
module.exports = {
defaultThreadName: threads.defaultThreadName,
groupThreadsByParent: threads.groupThreadsByParent,
listForumPostsForParent: threads.listForumPostsForParent,
buildThreadsPanel: threads.buildThreadsPanel,
isThreadChannel: threads.isThreadChannel,
isDmThreadChannel: threads.isDmThreadChannel,
isForumChannel: threads.isForumChannel,
isAnnouncementChannel: threads.isAnnouncementChannel,
sortForumPosts: threads.sortForumPosts
}