24 lines
852 B
Dart
24 lines
852 B
Dart
abstract class Routes {
|
|
static const splash = '/';
|
|
static const setup = '/setup';
|
|
static const login = '/login';
|
|
static const notes = '/notes';
|
|
static const noteDetail = '/notes/:id';
|
|
static const noteEdit = '/notes/:id/edit';
|
|
static const noteNew = '/notes/new';
|
|
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 news = '/news';
|
|
static const calendar = '/calendar';
|
|
static const projectTasks = '/projects/:id/tasks';
|
|
}
|