feat(knowledge): add knowledge + projectEdit route constants

This commit is contained in:
2026-04-04 22:55:50 -04:00
parent ac4b2359a5
commit e89626a782
+2 -1
View File
@@ -9,12 +9,13 @@ abstract class Routes {
static const tasks = '/tasks';
static const taskNew = '/tasks/new';
static const taskEdit = '/tasks/:id/edit';
static const knowledge = '/knowledge';
static const projects = '/projects';
static const projectEdit = '/projects/:id/edit';
static const conversations = '/chat';
static const chat = '/chat/:id';
static const quickCapture = '/quick-capture';
static const settings = '/settings';
static const briefing = '/briefing';
static const library = '/library';
static const projectTasks = '/projects/:id/tasks';
}