Build and Push / build (release) Successful in 1m28s
- Dashboard domain with Quick Links CRUD + reorder endpoints - Dashboard widgets management endpoints - Database migrations for quick_links and dashboard_widgets tables - Static file controller for Organizr widgets - Default local user when OIDC is disabled - Domain-based architecture refactor (src/domains/, src/shared/) - Test suite updated for new structure (285 tests passing) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
9 lines
195 B
Python
9 lines
195 B
Python
"""
|
|
Housekeeping Domain
|
|
|
|
Provides home automation endpoints via Home Assistant.
|
|
"""
|
|
from src.domains.housekeeping.controller import housekeeping_controller
|
|
|
|
__all__ = ["housekeeping_controller"]
|