rough outline of dragging tasks is working
This commit is contained in:
@@ -8,7 +8,8 @@ export class Event {
|
||||
public title: string,
|
||||
public from: DateTime,
|
||||
public to: DateTime,
|
||||
public description: string
|
||||
public description: string,
|
||||
public task: Task | undefined = undefined
|
||||
) { }
|
||||
|
||||
|
||||
@@ -144,6 +145,10 @@ export class Event {
|
||||
}
|
||||
}
|
||||
|
||||
isTask() {
|
||||
return this.task !== undefined
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
export type EventDimensions = {
|
||||
|
||||
Reference in New Issue
Block a user