feat: set default project

This commit is contained in:
Nikolai Giman
2026-07-11 22:18:36 +02:00
parent 30274069a0
commit a9be0d987a
12 changed files with 217 additions and 14 deletions
@@ -7,8 +7,12 @@ export type UiPreferencesItem = {
export type FirstDayOfWeek = 0 | 1 | 2 | 3 | 4 | 5 | 6
export type DefaultView = 'tasks' | 'kanban' | 'graph' | 'sprints'
export type UiSettings = {
firstDayOfWeek?: FirstDayOfWeek
defaultProjectId?: number
defaultView?: DefaultView
}
export const UI_SETTINGS_KEY = '__settings__'