resolve issues with new features

This commit is contained in:
Matthias Hochmeister
2026-03-12 16:05:01 +01:00
parent a5cd78f01f
commit 5aa309b97a
22 changed files with 796 additions and 234 deletions

View File

@@ -1,9 +1,11 @@
export type BannerLevel = 'info' | 'important' | 'critical';
export type BannerShowAs = 'banner' | 'widget';
export interface Banner {
id: string;
message: string;
level: BannerLevel;
show_as: BannerShowAs;
starts_at: string;
ends_at: string | null;
created_at: string;

View File

@@ -15,6 +15,7 @@ export interface VikunjaProject {
export interface VikunjaTasksResponse {
configured: boolean;
data: VikunjaTask[];
vikunjaUrl?: string;
}
export interface VikunjaProjectsResponse {