From e89626a782650063e6e66b33699c68c11b6108fc Mon Sep 17 00:00:00 2001 From: bvandeusen Date: Sat, 4 Apr 2026 22:55:50 -0400 Subject: [PATCH] feat(knowledge): add knowledge + projectEdit route constants --- lib/core/constants.dart | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/core/constants.dart b/lib/core/constants.dart index 9d84bf1..bf4b3d1 100644 --- a/lib/core/constants.dart +++ b/lib/core/constants.dart @@ -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'; }