mirror of
https://github.com/AutoMaker-Org/automaker.git
synced 2026-01-31 20:03:37 +00:00
- Updated the ideation routes to include an EventEmitter for better event management. - Added a new endpoint to handle adding suggestions to the board, ensuring consistent category mapping. - Modified existing routes to emit events for idea creation, update, and deletion, improving frontend notifications. - Refactored the convert and create idea handlers to utilize the new event system. - Removed static guided prompts data in favor of dynamic fetching from the backend API.
12 lines
698 B
TypeScript
12 lines
698 B
TypeScript
export { useAutoMode } from './use-auto-mode';
|
|
export { useBoardBackgroundSettings } from './use-board-background-settings';
|
|
export { useElectronAgent } from './use-electron-agent';
|
|
export { useGuidedPrompts } from './use-guided-prompts';
|
|
export { useKeyboardShortcuts } from './use-keyboard-shortcuts';
|
|
export { useMessageQueue } from './use-message-queue';
|
|
export { useOSDetection, type OperatingSystem, type OSDetectionResult } from './use-os-detection';
|
|
export { useResponsiveKanban } from './use-responsive-kanban';
|
|
export { useScrollTracking } from './use-scroll-tracking';
|
|
export { useSettingsMigration } from './use-settings-migration';
|
|
export { useWindowState } from './use-window-state';
|