mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-09-02 06:39:46 +08:00
ee899a267b
#### PR Dependency Tree * **PR #15448** 👈 This tree was auto-generated by [Charcoal](https://github.com/danerwilliams/charcoal) <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit * **New Features** * Added workspace artifact upload, browsing, removal, deduplication, and library ownership support. * Copilot now supports scoped document and artifact search, canvas reading, live editor context, and frontend tools. * Added scope and focus selectors with source-resolution receipts in chat. * Added embedding health, progress, synchronization, and retrieval capabilities. * Added BYOK policy visibility, provider restrictions, endpoint dialect selection, and validation. * Added delegated editor interactions and userdata document authorization. * **Bug Fixes** * Improved attachment handling, cancellation, access control, retrieval fallbacks, workspace synchronization, and configuration validation. <!-- end of auto-generated comment: release notes by coderabbit.ai -->
15 lines
378 B
TypeScript
15 lines
378 B
TypeScript
import { Module } from '@nestjs/common';
|
|
|
|
import { CommentRealtimeModule } from './core/comment';
|
|
import { WorkspaceRealtimeModule } from './core/workspaces';
|
|
import { CopilotRealtimeModule } from './plugins/copilot';
|
|
|
|
@Module({
|
|
imports: [
|
|
WorkspaceRealtimeModule,
|
|
CommentRealtimeModule,
|
|
CopilotRealtimeModule,
|
|
],
|
|
})
|
|
export class ServerRealtimeHandlersModule {}
|