mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
⚡ Fix lint issues, formatting and icons
This commit is contained in:
@@ -1,25 +1,25 @@
|
||||
export interface ITask{
|
||||
// Required attributes
|
||||
id?:string;
|
||||
title?:string;
|
||||
status?:TaskStatus;
|
||||
flag?:boolean;
|
||||
// Optional attributes
|
||||
owner?:string;
|
||||
description?:string;
|
||||
startDate?:Date;
|
||||
endDate?:Date;
|
||||
// Backend generated attributes
|
||||
export interface ITask {
|
||||
// Required attributes
|
||||
id?: string;
|
||||
title?: string;
|
||||
status?: TaskStatus;
|
||||
flag?: boolean;
|
||||
// Optional attributes
|
||||
owner?: string;
|
||||
description?: string;
|
||||
startDate?: Date;
|
||||
endDate?: Date;
|
||||
// Backend generated attributes
|
||||
|
||||
createdBy?:string;
|
||||
createdAt?:Date;
|
||||
updatedBy?:string;
|
||||
upadtedAt?:Date;
|
||||
createdBy?: string;
|
||||
createdAt?: Date;
|
||||
updatedBy?: string;
|
||||
upadtedAt?: Date;
|
||||
}
|
||||
|
||||
export enum TaskStatus{
|
||||
WAITING="Waiting",
|
||||
INPROGRESS="InProgress",
|
||||
COMPLETED="Completed",
|
||||
CANCEL="Cancel",
|
||||
export enum TaskStatus {
|
||||
WAITING = 'Waiting',
|
||||
INPROGRESS = 'InProgress',
|
||||
COMPLETED = 'Completed',
|
||||
CANCEL = 'Cancel',
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user