public calendar view and secured type edit

This commit is contained in:
Julian Krauser 2024-12-04 19:00:24 +01:00
parent 5bb107e53a
commit e9a3e0c872
10 changed files with 145 additions and 6 deletions

View file

@ -3,12 +3,14 @@ export interface CalendarTypeViewModel {
type: string;
nscdr: boolean;
color: string;
passphrase: string | null;
}
export interface CreateCalendarTypeViewModel {
type: string;
nscdr: boolean;
color: string;
passphrase?: string;
}
export interface UpdateCalendarTypeViewModel {
@ -16,4 +18,5 @@ export interface UpdateCalendarTypeViewModel {
type: string;
nscdr: boolean;
color: string;
passphrase?: string;
}