provide ics link

This commit is contained in:
Julian Krauser 2024-11-07 10:49:34 +01:00
parent 8c597fd68d
commit 91c3fde688
8 changed files with 155 additions and 4 deletions

View file

@ -6,6 +6,8 @@ import {
PrimaryGeneratedColumn,
CreateDateColumn,
UpdateDateColumn,
AfterUpdate,
BeforeUpdate,
} from "typeorm";
import { calendarType } from "./calendarType";
@ -32,6 +34,9 @@ export class calendar {
@Column({ type: "boolean", default: false })
allDay: boolean;
@Column({ type: "int", default: 1 })
sequence: number;
@CreateDateColumn()
createdAt: Date;