mirror of
https://github.com/zadam/trilium.git
synced 2025-12-09 17:04:25 +01:00
- Add database migration v234 for collaborative multi-user schema - Implement permission system with granular access control (read/write/admin) - Add group management for organizing users - Implement permission-aware sync filtering (pull and push) - Add automatic note ownership tracking via CLS - Create 14 RESTful API endpoints for permissions and groups - Update authentication for multi-user login - Maintain backward compatibility with single-user mode - Add comprehensive documentation Addresses PR #7441 critical sync blocker issue. All backend functionality complete and production-ready.
8 lines
156 B
TypeScript
8 lines
156 B
TypeScript
declare global {
|
|
interface Window {
|
|
editor: ClassicEditor;
|
|
}
|
|
}
|
|
import { ClassicEditor } from 'ckeditor5';
|
|
import 'ckeditor5/ckeditor5.css';
|