Add Tasks module with home routing for task management flows.
Implement task list, detail, and create pages with API integration, cloud/local attachment support, and unit tests. Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
@ -30,6 +30,12 @@ extension HomeRoute {
|
||||
PaymentCollectionView()
|
||||
case .wallet:
|
||||
WalletView()
|
||||
case .taskManagement:
|
||||
TaskManagementView()
|
||||
case .taskCreate:
|
||||
TaskCreateView()
|
||||
case .taskDetail(let id, let summary):
|
||||
TaskDetailView(taskId: id, summary: summary)
|
||||
case let .modulePlaceholder(uri, title):
|
||||
HomeMigrationModuleView(title: title, uri: uri)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user