Complete Phase 2 identity & authentication module: - Organization CRUD with tree structure (parent_id + materialized path) - Department CRUD nested under organizations with tree support - Position CRUD nested under departments - User management page with table, create/edit modal, role assignment - Organization architecture page with 3-panel tree layout - Frontend API layer for orgs/depts/positions - Sidebar navigation updated with organization menu item - Fix parse_ttl edge case for strings ending in 'd' (e.g. "invalid")
5 lines
87 B
Rust
5 lines
87 B
Rust
pub mod auth_handler;
|
|
pub mod org_handler;
|
|
pub mod role_handler;
|
|
pub mod user_handler;
|