- Database: Add external_calendars table with user relationships and CRUD operations - Backend: Implement REST API endpoints for external calendar management and ICS fetching - Frontend: Add external calendar modal, sidebar section with visibility toggles - Calendar integration: Merge external events with regular events in unified view - ICS parsing: Support multiple datetime formats, recurring events, and timezone handling - Authentication: Integrate with existing JWT token system for user-specific calendars - UI: Visual distinction with 📅 indicator and separate management section 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
15 lines
289 B
Rust
15 lines
289 B
Rust
pub mod auth;
|
|
pub mod calendar;
|
|
pub mod events;
|
|
pub mod external_calendars;
|
|
pub mod ics_fetcher;
|
|
pub mod preferences;
|
|
pub mod series;
|
|
|
|
pub use auth::*;
|
|
pub use calendar::*;
|
|
pub use events::*;
|
|
pub use external_calendars::*;
|
|
pub use ics_fetcher::*;
|
|
pub use preferences::*;
|
|
pub use series::*; |